Example #1
0
        private void btnSalvar_Click(object sender, EventArgs e)
        {
            Contato contato = new Contato();

            contato._nome     = txtNome.Text;
            contato._telefone = mskTelefone.Text;
            contato._endereco = txtEndereco.Text;
            contato._email    = txtEmail.Text;
            repositoriocontato.Incluir(contato);
            txtNome.Text     = "";
            txtEndereco.Text = "";
            mskTelefone.Text = "";
            txtEmail.Text    = "";
        }