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