private bool PodeSalvar() { string sMensagem; if (txtTelefone.Text.Trim().ToString() == "") { sMensagem = "Digite o [Telefone]."; PontoBr.Utilidades.Diversos.ExibirAlertaScriptManager(sMensagem, this.Page); return(false); } if (txtTelefone.Text.Trim().Length != 10 && txtTelefone.Text.Trim().Length != 11) { sMensagem = "[Telefone] deve conter 10 ou 11 dígitos"; PontoBr.Utilidades.Diversos.ExibirAlertaScriptManager(sMensagem, this.Page); return(false); } if (txtTelefone.Text.Substring(0, 1) == "0") { sMensagem = "[Telefone] incorreto."; PontoBr.Utilidades.Diversos.ExibirAlertaScriptManager(sMensagem, this.Page); return(false); } prospectCTL CProspect = new prospectCTL(); if (CProspect.VerificarTelefoneBlackList(Convert.ToDouble(txtTelefone.Text))) { sMensagem = "O [Telefone] já está cadastrado."; PontoBr.Utilidades.Diversos.ExibirAlertaScriptManager(sMensagem, this.Page); return(false); } return(true); }
private bool PodeSalvar() { string sMensagem; if (txtTelefone.Text.Trim().ToString() == "") { sMensagem = "Digite o [Telefone]."; MessageBox.Show(sMensagem, "Tabulare", MessageBoxButtons.OK, MessageBoxIcon.Information); return(false); } if (txtTelefone.Text.Trim().Length != 10 && txtTelefone.Text.Trim().Length != 11) { sMensagem = "[Telefone] deve conter 10 ou 11 dígitos"; MessageBox.Show(sMensagem, "Tabulare", MessageBoxButtons.OK, MessageBoxIcon.Information); return(false); } if (txtTelefone.Text.Substring(0, 1) == "0") { sMensagem = "[Telefone] incorreto."; MessageBox.Show(sMensagem, "Tabulare", MessageBoxButtons.OK, MessageBoxIcon.Warning); return(false); } prospectCTL CProspect = new prospectCTL(); if (CProspect.VerificarTelefoneBlackList(Convert.ToDouble(txtTelefone.Text))) { sMensagem = "O [Telefone] já está cadastrado."; MessageBox.Show(sMensagem, "Tabulare", MessageBoxButtons.OK, MessageBoxIcon.Warning); return(false); } return(true); }