예제 #1
0
 public void Delete(API_Key entityToDelete)
 {
     uow_Keys.KeyRepo.Delete(entityToDelete);
     uow_Keys.Save();
 }
예제 #2
0
 public void Update(API_Key entityToUpdate)
 {
     uow_Keys.KeyRepo.Update(entityToUpdate);
     uow_Keys.Save();
 }
예제 #3
0
 public void Insert(API_Key entity)
 {
     uow_Keys.KeyRepo.Insert(entity);
     uow_Keys.Save();
 }