Exemplo n.º 1
0
 public Historico(string razao, Paciente patient, DateTime registro)
 {
     Razao    = razao;
     Patient  = patient;
     Registro = registro;
 }
Exemplo n.º 2
0
 public Quarto(string andar, string room, Paciente patient)
 {
     Andar   = andar;
     Room    = room;
     Patient = patient;
 }
Exemplo n.º 3
0
 public Responsavel(string nome, string rG, string cPF, string senha, string telefone, string email, bool acesso, Paciente patient)
 {
     Nome     = nome;
     RG       = rG;
     CPF      = cPF;
     Senha    = senha;
     Telefone = telefone;
     Email    = email;
     Acesso   = acesso;
     Patient  = patient;
 }