public void ExcluirItens(Model.ItemPedidoModel itens) { if (itens.Codigo != 0) { DAL.ItemDAL itensDAL = new DAL.ItemDAL(); itensDAL.ExcluirItens(itens); } else { throw new Exception("Informe o codigo antes de excluir"); } }
public void IncluirItens(Model.ItemPedidoModel itens) { if (itens.Produto.Trim().Length == 0) { throw new Exception("A Descrição é obrigatória"); } if (itens.Qtd == 0) { throw new ApplicationException("A quantidade é obrigatória"); } DAL.ItemDAL cidadesDAL = new DAL.ItemDAL(); cidadesDAL.salvarItens(itens); }
public DataTable getItensDT() { DAL.ItemDAL itens = new DAL.ItemDAL(); return itens.getItensDT(); }
public ItemBAL(Connection connection, Setting setting) { ItemDAL = new DAL.ItemDAL(connection, setting); }