Exemple #1
0
 public ApiService(IStorageService storageService, IApiTraceService apiTraceService)
 {
     _helper = new SyncApiHelper(storageService, "bookmarked_id", "https://bookmarked.syncapi.famoser.ch/")
     {
         ApiTraceService = apiTraceService
     };
 }
Exemple #2
0
 static void Main(string[] args)
 {
     try
     {
         SyncApiHelper.StartBusinessSyncFromApi();
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message);
     }
 }