Exemplo n.º 1
0
        private void btnOk_Click(object sender, EventArgs e)
        {
            //veririficar se os campos foram preenchidos
            if (txtCodigoCliente.Text == string.Empty)
            //|| txtCodigoCliente.Text == string.Empty
            {
                MessageBox.Show("Favor preencher campo.", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
            else
            {
                if (txtNomeCliente.Text == string.Empty)
                {
                    MessageBox.Show("Favor preencher campo.", "Aviso");
                    txtNomeCliente.Focus();
                }
            }
            //instanciar a classe SalvarCliente
            SalvarCliente salvarcliente = new SalvarCliente();

            //referencia ao dto
            ClienteDTO dados = new ClienteDTO();

            //popular os campos
            dados.Nome     = txtNomeCliente.Text;
            dados.Endereco = txtEndereco.Text;
            dados.Telefone = txtTelefone.Text;
            dados.Bairro   = txtBairro.Text;

            //chamar o metodo para incluir cliente
            salvarcliente.IncluirCliente(dados);
        }
Exemplo n.º 2
0
        private void btnIncluirClientes_Click(object sender, EventArgs e)
        {
            //Verifica Se Os Campos Foram Preenchidos.
            if (txtNome.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o campo NOME!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtNome.Focus();
            }

            else if (txtCNPJ.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o CNPJ!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtCNPJ.Focus();
            }

            else if (txtEndereco.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o ENDEREÇO!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtEndereco.Focus();
            }

            else if (txtCEP.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o CEP!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtCEP.Focus();
            }

            else if (txtBairro.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o BAIRRO!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtBairro.Focus();
            }

            else if (txtMunicipio.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o MUNICÍPIO!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtMunicipio.Focus();
            }

            else if (txtEstado.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o ESTADO!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtEstado.Focus();
            }

            else if (txtIE.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o IE!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtIE.Focus();
            }

            else if (txtTelefone.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o TELEFONE!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtTelefone.Focus();
            }

            else if (txtEmail.Text == string.Empty)
            {
                MessageBox.Show("Favor Preencher o EMAIL!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                txtEmail.Focus();
            }
            else
            {
                //Instanciar a classe ValidarUsuario
                SalvarCliente salvarcliente = new SalvarCliente();
                ClientesDTO   dados         = new ClientesDTO();


                //Popular os campos
                dados.Nome      = txtNome.Text;
                dados.CNPJ      = txtCNPJ.Text;
                dados.Endereco  = txtEndereco.Text;
                dados.CEP       = txtCEP.Text;
                dados.Bairro    = txtBairro.Text;
                dados.Municipio = txtMunicipio.Text;
                dados.Estado    = txtEstado.Text;
                dados.IE        = txtIE.Text;
                dados.Telefone  = txtTelefone.Text;
                dados.Telefone2 = txtTelefone2.Text;
                dados.Email     = txtEmail.Text;
                dados.Email2    = txtEmail_2.Text;


                //Chamar o método para incluir cliente
                salvarcliente.IncluirCliente(dados);

                MessageBox.Show("Cliente Cadastrado com Sucesso!", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

            //Quando o cadastro é efetuado com sucesso é limpo todos os campos.
            txtNome.Clear();
            txtCNPJ.Clear();
            txtEndereco.Clear();
            txtCEP.Clear();
            txtBairro.Clear();
            txtMunicipio.Clear();
            txtEstado.Clear();
            txtIE.Clear();
            txtTelefone.Clear();
            txtTelefone2.Clear();
            txtEmail.Clear();
            txtEmail_2.Clear();
        }