예제 #1
0
 public void Delete(Cliente cliente)
 {
     if (!string.IsNullOrEmpty(Convert.ToString(cliente.Cedula)))
     {
         _crudFactory.Delete(cliente);
         gestorAccion.delete(AccionPara);
     }
     else
     {
         throw new Exception();
     }
 }
예제 #2
0
 public void Delete(Cliente cliente)
 {
     crudCliente.Delete(cliente);
 }
예제 #3
0
 internal void Delete(Cliente cliente)
 {
     crudFactory.Delete(cliente);
 }