コード例 #1
0
        private void btnAdicionar_Click(object sender, EventArgs e)
        {
            modelo add = new modelo();
            dal    da  = new dal();

            add.Nome     = txtAddNome.Text;
            add.Cargo    = txtAddCargo.Text;
            add.Endereco = txtAddEnd.Text;
            add.Telefone = txtAddTel.Text;
            add.Idade    = Convert.ToInt16(numAddIdade.Value);

            da.Insert(add);

            txtAddNome.Text   = "";
            txtAddCargo.Text  = "";
            txtAddEnd.Text    = "";
            txtAddTel.Text    = "";
            numAddIdade.Value = 0;

            frmPrincipal principal = new frmPrincipal();

            principal.Update();
        }
コード例 #2
0
        private void btnAdicionar_Click(object sender, EventArgs e)
        {
            
            modelo add = new modelo();
            dal da = new dal();

            add.Nome = txtAddNome.Text;
            add.Cargo = txtAddCargo.Text;
            add.Endereco = txtAddEnd.Text;
            add.Telefone = txtAddTel.Text;
            add.Idade = Convert.ToInt16(numAddIdade.Value);

            da.Insert(add);

            txtAddNome.Text = "";
            txtAddCargo.Text = "";
            txtAddEnd.Text = "";
            txtAddTel.Text = "";
            numAddIdade.Value = 0;

            frmPrincipal principal = new frmPrincipal();
            principal.Update();
        }