public void LocalizarTipoPagamento() { DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexão); BLLTipoPagamento bll = new BLLTipoPagamento(cx); ModeloTipoPagamento modelo = bll.CarregaModeloTipoPagamento(codigo); PreencheCampos(modelo); alteraBotoes(); }
private void btnLocalizar_Click(object sender, EventArgs e) { if (codigo != 0) { DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexão); BLLTipoPagamento bll = new BLLTipoPagamento(cx); ModeloTipoPagamento modelo = bll.CarregaModeloTipoPagamento(codigo); PreencheCampos(modelo); } else { frmConsultaTipoPagamento f = new frmConsultaTipoPagamento(); Close(); f.ShowDialog(); f.Dispose(); } }
private void btLocalizar_Click(object sender, EventArgs e) { frmConsultaTipoPagamento f = new frmConsultaTipoPagamento(); f.ShowDialog(); if (f.codigo != 0) { DALConexao cx = new DALConexao(DadosDaConexao.StringDeConexao); BLLTipoPagamento bll = new BLLTipoPagamento(cx); ModeloTipoPagamento modelo = bll.CarregaModeloTipoPagamento(f.codigo); txtCodigo.Text = modelo.TpaCod.ToString(); txtNome.Text = modelo.TpaNome; alteraBotoes(3); } else { this.LimpaTela(); this.alteraBotoes(1); } f.Dispose(); }
private void btLocalizar_Click(object sender, EventArgs e) { Frm_ConsultaTipoPagamento consultaPagamento = new Frm_ConsultaTipoPagamento(); //CRIA O FORMULARIO DE CONSULTA DA CATEGORIA consultaPagamento.ShowDialog(); //EXIBE O FORMULARIO if (consultaPagamento.codigo != 0) //VERIFICA SE O CODIGO É DIFERENTE DE 0 - ENTAO ELE SELECIONOU UMA CATEGORIA PARA ALTERAR { DALConexao dalConexao = new DALConexao(DadosDaConexao.StringDeConexao); //CRIA A CONEXAO BLLTipoPagamento bllPagamento = new BLLTipoPagamento(dalConexao); //CRIA A CONEXAO ModeloTipoPagamento modeloPagamento = bllPagamento.CarregaModeloTipoPagamento(consultaPagamento.codigo); //CRIA O DLL. carrega o modelo ! Apartir do modelo criado por meio do CarregaModelo, e tem como parametro o CODIGO que o usuario selecionou. txtCodigo.Text = modeloPagamento.TpaCod.ToString(); //PEGA AS INFORMACOES E VOLTA NA TELA txtNome.Text = modeloPagamento.TpaNome; //PEGA AS INFORMACOES E VOLTA NA TELA AlterarBotoes(3); } else { LimpaTela(); AlterarBotoes(1); } consultaPagamento.Dispose(); }