예제 #1
0
 public ApiService(IStorageService storageService, IApiTraceService apiTraceService)
 {
     _helper = new SyncApiHelper(storageService, "bookmarked_id", "https://bookmarked.syncapi.famoser.ch/")
     {
         ApiTraceService = apiTraceService
     };
 }
예제 #2
0
파일: Program.cs 프로젝트: juzar4u/manager
 static void Main(string[] args)
 {
     try
     {
         SyncApiHelper.StartBusinessSyncFromApi();
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message);
     }
 }