Exemplo n.º 1
0
 public void Update(TestEntity entity)
 {
     testRepo.Update(entity.ToDalTest());
     uow.Commit();
 }
Exemplo n.º 2
0
 public void Delete(TestEntity entity)
 {
     testRepo.Delete(entity.ToDalTest());
     uow.Commit();
 }