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); } }
private void btnSalvar_Click(object sender, EventArgs e) { Forma_PagController ModelController = new Forma_PagController(); Forma_Pag model = new Forma_Pag(); if (operacao == Operacao.gravarNovo) { model.FORMA_PAG_DESCRICAO = fORMA_PAG_DESCRICAOTextBox.Text; ModelController.Inserir(model); } else if (operacao == Operacao.editarRegistro) { model = (Forma_Pag)bSource.Current; model.FORMA_PAG_DESCRICAO = fORMA_PAG_DESCRICAOTextBox.Text; ModelController.Atualizar(model); } CarregarDados(); AtivarControles(); BloquearEdicaoDados(true); }
private void btnRemover_Click(object sender, EventArgs e)//OK { Forma_PagController ModelController = new Forma_PagController(); Forma_Pag model = (Forma_Pag)bSource.Current; if (MessageBox.Show( "Tem certeza que deseja excluir o registro de " + model.FORMA_PAG_DESCRICAO + "?", "Alerta", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { ModelController.Excluir(model.FORMA_PAG_ID); MessageBox.Show("Exclusão executada", "Exclusão", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Exclusão cancelada", "Exclusão", MessageBoxButtons.OK, MessageBoxIcon.Information); } CarregarDados(); AtivarControles(); }