public DataTable Localizar(string Valor) { DALTp_Combustivel DALObj = new DALTp_Combustivel(conexao); return DALObj.Localizar(Valor); }
public void Incluir(Modelo_Tp_Combustivel modelo) { if (modelo.TipTipo.Trim().Length == 0) { throw new Exception("O tipo é necessario"); } if (modelo.TipValor == 0) { throw new Exception("O valor é necessario"); } DALTp_Combustivel DALObj = new DALTp_Combustivel(conexao); DALObj.Incluir(modelo); }
public Modelo_Tp_Combustivel CarregaModelo_Tp_Combustivel(int Codigo) { DALTp_Combustivel DALObj = new DALTp_Combustivel(conexao); return DALObj.CarregaModelo_Tp_Combustivel(Codigo); }
public void Excluir(int Codigo) { DALTp_Combustivel DALObj = new DALTp_Combustivel(conexao); DALObj.Excluir(Codigo); }