Example #1
0
 public override async Task SaveAsync()
 {
     await CurrentContextWithOptions.SaveChangesAsync();
 }
Example #2
0
 public override void Delete(T entity)
 {
     CurrentContextWithOptions.DeleteObject(entity);
 }
Example #3
0
 public override void Save()
 {
     CurrentContextWithOptions.SaveChanges();
 }