Exemplo n.º 1
0
 public static void SaveRunHistory(string filename)
 {
     SyncServer.SaveRunHistory(DateTime.UtcNow, filename);
 }
Exemplo n.º 2
0
 public static void ClearRunHistory(DateTime clearBeforeDate, string filename)
 {
     SyncServer.SaveRunHistory(clearBeforeDate, filename);
     SyncServer.ClearRunHistory(clearBeforeDate);
 }