Exemplo n.º 1
0
 public void Delete(API_Key entityToDelete)
 {
     uow_Keys.KeyRepo.Delete(entityToDelete);
     uow_Keys.Save();
 }
Exemplo n.º 2
0
 public void Update(API_Key entityToUpdate)
 {
     uow_Keys.KeyRepo.Update(entityToUpdate);
     uow_Keys.Save();
 }
Exemplo n.º 3
0
 public void Insert(API_Key entity)
 {
     uow_Keys.KeyRepo.Insert(entity);
     uow_Keys.Save();
 }