예제 #1
0
 public void UpsertJobChekpoint(ExportImportChekpoint checkpoint)
 {
     this._dataProvider.ExecuteNonQuery(
         "ExportImportCheckpoints_Upsert",
         checkpoint.JobId, checkpoint.AssemblyName, checkpoint.Category, checkpoint.Stage, checkpoint.StageData,
         Null.SetNullInteger(Math.Floor(checkpoint.Progress)), checkpoint.TotalItems, checkpoint.ProcessedItems, this._dataProvider.GetNull(checkpoint.StartDate), checkpoint.Completed);
 }
예제 #2
0
 /// <inheritdoc/>
 public void UpdateJobChekpoint(ExportImportChekpoint checkpoint)
 {
     this.dataProvider.UpsertJobChekpoint(checkpoint);
 }