private void btnSalvar_Click(object sender, EventArgs e) { if (txtIDCliente.Text == "0") { if (txtRazao.Text == ("") || txtNome.Text == ("") || txtCNPJ.Text == ("") || txtEndereco.Text == ("") || txtNumero.Text == ("") || txtCidade.Text == ("") || txtBairro.Text == ("") || cmbEstado.Text == ("") || txtCEP.Text == ("") || txtTelefone.Text == ("") || txtCelular.Text == ("") || txtEmail.Text == ("") || txtSite.Text == ("")) { MessageBoxButtons ok = MessageBoxButtons.OK; MessageBox.Show("Preencha todos os campos obrigatórios (*)", "Existem campos Vazios", ok); } else { atribuirCampos(); clientebo.cadastrar(cliente); MessageBoxButtons ok = MessageBoxButtons.OK; MessageBox.Show("Cadastro realizado com Sucesso!", "Novo Cadastro", ok); aposCadastro(); limparCampos(); } } else { if (txtRazao.Text == ("") || txtNome.Text == ("") || txtCNPJ.Text == ("") || txtEndereco.Text == ("") || txtNumero.Text == ("") || txtCidade.Text == ("") || txtBairro.Text == ("") || cmbEstado.Text == ("") || txtCEP.Text == ("") || txtTelefone.Text == ("") || txtCelular.Text == ("") || txtEmail.Text == ("") || txtSite.Text == ("")) { MessageBoxButtons ok = MessageBoxButtons.OK; MessageBox.Show("Preencha todos os campos obrigatórios (*)", "Existem campos Vazios", ok); } else { atribuirCampos(); clientebo.atualizar(cliente); MessageBoxButtons ok = MessageBoxButtons.OK; MessageBox.Show("Atualização realizada com Sucesso!", "Atualizar Cadastro", ok); aposCadastro(); limparCampos(); } } }