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