public void Excluir(int ID) { using (Connection con = new Connection()) { con.Abrir(); IDAO <Forma_Pag> TableIDAO = new Forma_PagDAO(con); Forma_Pag forma_Pag = new Forma_Pag(); forma_Pag.FORMA_PAG_ID = ID; TableIDAO.Remover(forma_Pag); } }
public Forma_Pag LocalizarPrimeiro() { Forma_Pag result = null; using (Connection con = new Connection()) { con.Abrir(); IDAO <Forma_Pag> TableIDAO = new Forma_PagDAO(con); result = TableIDAO.LocalizarPrimeiro(); } return(result); }
public void Inserir(Forma_Pag obj) { using (Connection con = new Connection()) { con.Abrir(); IDAO <Forma_Pag> TableIDAO = new Forma_PagDAO(con); Forma_Pag forma_Pag = new Forma_Pag(); forma_Pag.FORMA_PAG_DESCRICAO = obj.FORMA_PAG_DESCRICAO; TableIDAO.Inserir(forma_Pag); } }
public Collection <Forma_Pag> ListarTudo() { Collection <Forma_Pag> result = null; using (Connection con = new Connection()) { con.Abrir(); IDAO <Forma_Pag> TableIDAO = new Forma_PagDAO(con); result = TableIDAO.ListarTudo(); } return(result); }