Exemplo n.º 1
0
 public void Insert(client entity)
 {
     _repository.Insert(entity);
 }
Exemplo n.º 2
0
 public void Update(client entity)
 {
     _repository.Update(entity);
 }
Exemplo n.º 3
0
 public void Delete(client entity)
 {
     _repository.Delete(entity);
 }