public void incluir(ModeloCategoria modelo) { if (modelo.CatNome.Trim().Length == 0) { throw new Exception("O nome da categoria é obrigatório"); } //modelo.CatNome = modelo.CatNome.ToUpper(); DALCategoria DALobj = new DALCategoria(conexao); DALobj.Incluir(modelo); }
public void Incluir(ModeloCategoria c) { if (c.NomeCategoria.Trim().Length == 0) { throw new Exception("O nome da categoria é obrigatorio."); } DALCategoria da = new DALCategoria(CONEXAO); da.Incluir(c); }
public void Alterar(ModeloCategoria c) { if (c.CodCategoria <= 0) { throw new Exception("Selecione uma categoria."); } DALCategoria da = new DALCategoria(CONEXAO); da.Alterar(c); }
public void Alterar(ModeloCategoria modelo) { if (modelo.CatCod <= 0) { throw new Exception("O código da categoria é obrigatório"); } if (modelo.CatNome.Trim().Length == 0) { throw new Exception("O nome da categoria é obrigatório"); } //modelo.CatNome = modelo.CatNome.ToUpper(); DALCategoria DALobj = new DALCategoria(conexao); DALobj.Alterar(modelo); }
public void Alterar(ModeloCategoria modelo) { if (modelo.CatCod <= 0) { throw new Exception("O Código é Obrigatorio"); } if (modelo.CatNome.Trim().Length == 0) { throw new Exception("O Nome da Categoria é obrigatorio"); } modelo.CatNome = modelo.CatNome.ToUpper(); DALCategoria DALObj = new DALCategoria(conexao); DALObj.Alterar(modelo); }
public ModeloCategoria CarregaModeloCategoria(int codigo) { DALCategoria DALobj = new DALCategoria(conexao); return DALobj.CarregaModeloCategoria(codigo); }
public DataTable Localizar(String valor) { DALCategoria DALobj = new DALCategoria(conexao); return DALobj.Localizar(valor); }
public void Excluir(int codigo) { DALCategoria DALobj = new DALCategoria(conexao); DALobj.Excluir(codigo); }
public DataTable Localizar(String s) { DALCategoria da = new DALCategoria(CONEXAO); return da.Localizar(s); }
public void Excluir(int codigo) { DALCategoria da = new DALCategoria(CONEXAO); da.Excluir(codigo); }
public ModeloCategoria carregaCategoria(int codigo) { DALCategoria da = new DALCategoria(CONEXAO); return da.carregaCategoria(codigo); }
public DataTable Localizar(string Valor) { DALCategoria DALObj = new DALCategoria(conexao); return DALObj.Localizar(Valor); }