示例#1
0
 public void PatientDevientInactif()
 {
     if (this.m_attente != EnuAttente.Inactif)
     {
         this.m_attente = EnuAttente.Inactif;
     }
 }
示例#2
0
 public void PatientDevientAssigner()
 {
     if (this.EstAssigner())
     {
         return;
     }
     this.m_attente = EnuAttente.EstAssigner;
 }
示例#3
0
 public void PatientDevientEnAttente()
 {
     if (this.m_attente == EnuAttente.EnAttente)
     {
         return;
     }
     this.m_attente = EnuAttente.EnAttente;
 }
示例#4
0
 public Patient(int pId, string pNom, string pPrenom, string pNAM, EnuGenre pGenre, EnuTypeSang pSang, DateTime pDateNaissance, string pAdresse, string pVille, string pProvince, string pCodePostal, string pEmail,
                int pTelephone, double pPoids, double pTaille, EnuAttente pAttente, int pIdMedecin)
 {
     m_idPatient     = pId;
     m_nom           = pNom;
     m_prenom        = pPrenom;
     m_NAM           = pNAM;
     m_adresse       = pAdresse;
     m_ville         = pVille;
     m_province      = pProvince;
     m_codePostal    = pCodePostal;
     m_genre         = pGenre;
     m_sangType      = pSang;
     m_dateNaissance = pDateNaissance;
     m_email         = pEmail;
     m_noTelephone   = pTelephone;
     m_poidsEnKg     = pPoids;
     m_tailleEnCM    = pTaille;
     m_attente       = pAttente;
     m_idMedecin     = pIdMedecin;
 }