public void Excluir(int codigo) { if (codigo <= 0) { throw new Exception("O código da venda deve ser maior que zero!"); } DALVenda DALObj = new DALVenda(conexao); DALObj.Excluir(codigo); }
public void Excluir(int codigo) { if (codigo <= 0) { throw new Exception("O número deve ser maior do que zero"); } DALVenda DALobj = new DALVenda(conexao); DALobj.Excluir(codigo); }
public bool Excluir(CategoriaPagamento item) { //escreve a função de excluir, krl var objDAL = new DALVenda(); if (objDAL != null) { objDAL.Excluir(item); return(true); } else { return(false); } }
public void Excluir(int codigo) { DALVenda DALobj = new DALVenda(conexao); DALobj.Excluir(codigo); }