Exemple #1
0
 public Task <BackgroundJobRecord> InsertAsync(BackgroundJobRecord entity)
 {
     return(BackgroundJobRepository.InsertAsync(entity));
 }
Exemple #2
0
 public Task <BackgroundJobRecord> UpdateAsync(BackgroundJobRecord entity)
 {
     return(BackgroundJobRepository.UpdateAsync(entity));
 }
Exemple #3
0
 public Task DeleteAsync(BackgroundJobRecord entity, bool autoSave = false)
 {
     throw new NotImplementedException();
 }