public List <pCliente> SelCliente(string Cpf) { Dao D = new Dao(); DataTable DT = D.SelCliente(Cpf); List <pCliente> LC = new List <pCliente>(); for (int i = 0; i < DT.Rows.Count; i++) { pCliente P = new pCliente(); P.Cod_Cliente = Convert.ToInt32(DT.Rows[i]["Cod_Cliente"]); P.Nome = DT.Rows[i]["Nome"].ToString(); P.Rg = DT.Rows[i]["Rg"].ToString(); P.Cpf = DT.Rows[i]["Cpf"].ToString(); P.Telefone = DT.Rows[i]["Telefone"].ToString(); P.Email = DT.Rows[i]["Email"].ToString(); P.DtNascimento = Convert.ToDateTime(DT.Rows[i]["DTNascimento"]); P.Estado = DT.Rows[i]["Estado"].ToString(); P.Uf = DT.Rows[i]["Uf"].ToString(); P.Lougradouro = DT.Rows[i]["Lougradouro"].ToString(); P.Complemento = DT.Rows[i]["Complemento"].ToString(); P.Bairro = DT.Rows[i]["Bairro"].ToString(); P.Cep = DT.Rows[i]["Cep"].ToString(); LC.Add(P); } return(LC); }
public List<pCliente> SelCliente(string Cpf) { Dao D = new Dao(); DataTable DT = D.SelCliente(Cpf); List<pCliente> LC = new List<pCliente>(); for (int i = 0; i < DT.Rows.Count; i++) { pCliente P = new pCliente(); P.Cod_Cliente = Convert.ToInt32(DT.Rows[i]["Cod_Cliente"]); P.Nome = DT.Rows[i]["Nome"].ToString(); P.Rg = DT.Rows[i]["Rg"].ToString(); P.Cpf = DT.Rows[i]["Cpf"].ToString(); P.Telefone = DT.Rows[i]["Telefone"].ToString(); P.Email = DT.Rows[i]["Email"].ToString(); P.DtNascimento = Convert.ToDateTime(DT.Rows[i]["DTNascimento"]); P.Estado = DT.Rows[i]["Estado"].ToString(); P.Uf = DT.Rows[i]["Uf"].ToString(); P.Lougradouro = DT.Rows[i]["Lougradouro"].ToString(); P.Complemento = DT.Rows[i]["Complemento"].ToString(); P.Bairro = DT.Rows[i]["Bairro"].ToString(); P.Cep = DT.Rows[i]["Cep"].ToString(); LC.Add(P); } return LC; }
public List<pCliente> SelCliente() { Dao D = new Dao(); DataTable DT = D.SelCliente(); List<pCliente> LC = new List<pCliente>(); for (int i = 0; i < DT.Rows.Count; i++) { pCliente P = new pCliente(); P.Cod_Cliente = Convert.ToInt32(DT.Rows[i]["Cod_Cliente"]); P.Nome = DT.Rows[i]["Nome"].ToString(); LC.Add(P); } return LC; }
public List <pCliente> SelCliente() { Dao D = new Dao(); DataTable DT = D.SelCliente(); List <pCliente> LC = new List <pCliente>(); for (int i = 0; i < DT.Rows.Count; i++) { pCliente P = new pCliente(); P.Cod_Cliente = Convert.ToInt32(DT.Rows[i]["Cod_Cliente"]); P.Nome = DT.Rows[i]["Nome"].ToString(); LC.Add(P); } return(LC); }
protected void btnAlterar_Click(object sender, EventArgs e) { Msg("Cadastro alterado com sucesso!"); string Cpf = txtBuscaCpf.Text; pCliente P = new pCliente(); P.Nome = txtNome.Text; P.Rg = txtRg.Text; P.Cpf = txtCpf.Text; P.Telefone = txtTelefone.Text; P.Email = txtEmail.Text; P.DtNascimento = Convert.ToDateTime(txtDtNascimento.Text); P.Estado = txtEstado.Text; P.Uf = txtUf.Text; P.Lougradouro = txtLougradouro.Text; P.Complemento = txtComplemento.Text; P.Bairro = txtBairro.Text; P.Cep = txtCep.Text; mCliente M = new mCliente(); M.AtuCliente(P); LimparContatos(); }
public void InsCliente(pCliente P) { Dao D = new Dao(); D.InsCliente(P.Nome, P.Rg, P.Cpf, P.Telefone, P.Email, P.DtNascimento, P.Estado, P.Uf, P.Lougradouro, P.Complemento, P.Bairro, P.Cep); }
protected void btnEnviar_Click(object sender, EventArgs e) { if (txtNome.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtNome.Focus(); return; } else if (txtRg.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtRg.Focus(); return; } else if (txtCpf.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtCpf.Focus(); return; } else if (txtTelefone.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtTelefone.Focus(); return; } else if (txtEmail.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtEmail.Focus(); return; } else if (txtDtNascimento.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtDtNascimento.Focus(); return; } else if (txtEstado.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtEstado.Focus(); return; } else if (txtUf.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtUf.Focus(); return; } else if (txtLougradouro.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtLougradouro.Focus(); return; } else if (txtComplemento.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtComplemento.Focus(); return; } else if (txtBairro.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtBairro.Focus(); return; } else if (txtCep.Text == string.Empty) { Msg("Campo obrigatório em branco!"); txtCep.Focus(); return; } else if (ValidaCPF.IsCpf(txtCpf.Text)) { Msg("Cadastrado Com Sucesso!"); pCliente P = new pCliente(); P.Nome = txtNome.Text; P.Rg = txtRg.Text; P.Cpf = txtCpf.Text; P.Telefone = txtTelefone.Text; P.Email = txtEmail.Text; P.DtNascimento = Convert.ToDateTime(txtDtNascimento.Text); P.Estado = txtEstado.Text; P.Uf = txtUf.Text; P.Lougradouro = txtLougradouro.Text; P.Complemento = txtComplemento.Text; P.Bairro = txtBairro.Text; P.Cep = txtCep.Text; mCliente M = new mCliente(); M.InsCliente(P); LimparContatos(); } else { Msg("O número é um CPF Inválido !"); } }
public void AtuCliente(pCliente P) { Dao D = new Dao(); D.AtuCliente(P.Nome, P.Rg, P.Cpf, P.Telefone, P.Email, P.DtNascimento, P.Estado, P.Uf, P.Lougradouro, P.Complemento, P.Bairro, P.Cep); }