public ConflictResolvingSyncHandler(Offline_Tests offlineTest, IMobileServiceClient client, ConflictResolution resolutionPolicy)
 {
     this.client             = client;
     this.conflictResolution = resolutionPolicy;
     this.test = offlineTest;
 }
 public AbortingSyncHandler(Offline_Tests offlineTest, Func <string, bool> shouldAbortForId)
 {
     this.test           = offlineTest;
     this.AbortCondition = shouldAbortForId;
 }