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