예제 #1
0
 private void btnConsultar_Click(object sender, EventArgs e)
 {
     if (!vazio())
     {
         Paciente p = Dao.pegaPaciente(txtCpf.Text);
         if (p != null)
         {
             pacienteSelecionado = p;
             TriagemForm t = new TriagemForm();
             t.preenchePaciente(p.nome, p.cpf, p.sexo);
             this.Hide();
             t.Show();
         }
         else
         {
             CadastroPaciente c = new CadastroPaciente();
             c.preencheCpf(this.txtCpf.Text);
             this.Hide();
             c.Show();
         }
     }
     else
     {
         MessageBox.Show("Informe o cpf!");
     }
 }
예제 #2
0
 private void btnConfirmar_Click(object sender, EventArgs e)
 {
     if (sMasc.Checked == true)
     {
         sexo = "Masculino";
     }
     else if (sFem.Checked == true)
     {
         sexo = "Feminino";
     }
     if (!vazio())
     {
         string res = Dao.InserirPaciente(txtNome.Text, txtCpf.Text, sexo);
         if (res == "Paciente adicionado.")
         {
             Paciente t = Dao.pegaPaciente(txtCpf.Text);
             Consulta.pacienteSelecionado = new Paciente(t.id, txtNome.Text, txtCpf.Text, t.sexo);
             TriagemForm tr = new TriagemForm();
             tr.preenchePaciente(Consulta.pacienteSelecionado.nome, Consulta.pacienteSelecionado.cpf, Consulta.pacienteSelecionado.sexo);
             this.Hide();
             tr.Show();
         }
         else
         {
             MessageBox.Show(res);
         }
     }
     else if (count == 0)
     {
         MessageBox.Show("Preencha todos os campos!");
     }
     else
     {
         MessageBox.Show("Escolha o sexo do paciente!");
     }
     count = 0;
 }