public int PegaIndicePaciente(Paciente MeuPaciente)
 {
     return(MeusDados.RetornaIndice(MeuPaciente));
 }
Exemple #2
0
 public void AdicionaPaciente(Paciente MeuPaciente)
 {
     CadastroPaciente.Add(MeuPaciente);
 }
 public int Validacao(Paciente x)
 {
     MeusDados.LerPaciente();
     return(MeusDados.Validacao(x));
 }
Exemple #4
0
 public int RetornaIndice(Paciente MeuPaciente)
 {
     return(CadastroPaciente.IndexOf(MeuPaciente));
 }