fix(aihit-syncer): ограничение использования scope. Создан отдельный SyncerService

This commit is contained in:
Mikhail Kuznetsov
2024-02-06 16:54:40 +10:00
parent 0697d5b6b4
commit 90306b7a63
4 changed files with 401 additions and 265 deletions

View File

@@ -0,0 +1,7 @@
namespace PARR.AIHITSyncer.Services
{
public interface ISyncerService
{
Task SyncAsync(string msq);
}
}