コード例 #1
0
        public void afficherPatient(HopitalEntities bdd, Patient pat)
        {
            // On retrouve le patient dans la BDD et affiches ses attributs
            Patient sPatient = bdd.Patients.SingleOrDefault(x => x.NumAssuranceMaladie.Trim() == pat.NumAssuranceMaladie.Trim());

            if (sPatient != null)
            {
                cboNAM.SelectedItem          = sPatient;
                cboNom.SelectedItem          = sPatient;
                txtPrenom.Text               = sPatient.Prenom;
                dpDateNaissance.SelectedDate = sPatient.DateNaissance;
                if (sPatient.CompagnieAssurance == null)
                {
                    txtAssurancePrivee.Text = "Aucune";
                }
                else
                {
                    txtAssurancePrivee.Text = sPatient.CompagnieAssurance.NomCompagnie;
                }

                // On verifie l'age du patient et change la valeur de cboDepartement a "Pediatrie" is necessaire
                int age = calculerAge(sPatient);
                txtAge.Text = age.ToString();

                if (age <= 16)
                {
                    cboDepartement.SelectedIndex = 1; // Index 1 de combobox - Pédiatrie
                }
                else
                {
                    cboDepartement.SelectedIndex = 4; // Index 4 - dpt Général (choix par défault)
                }
            }
        } // afficherPatient
コード例 #2
0
        public int calculerLitsTotalDispHopital(HopitalEntities hopital)
        {
            int nbreLits = (from lit in hopital.Lits
                            where lit.Occupe == false
                            select lit).Count();

            return(nbreLits);
        }
コード例 #3
0
        } // cboDepartement_SelectionChanged

        public int calculerLitsDispDeptParCat(HopitalEntities hopital, int idDept, int cat)
        {
            int nbreLits = (from lit in hopital.Lits
                            where lit.IdDepartement == idDept &&
                            lit.IdTypeLit == cat &&
                            lit.Occupe == false
                            select lit).Count();

            return(nbreLits);
        }
コード例 #4
0
        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            myBdd = new HopitalEntities();
            // Binding de comboboxes
            provinces = Province.RecupererProvinces();
            cboProvince.ItemsSource = (from province in provinces
                                       orderby province.abbreviation
                                       select province).ToList();

            cboParentProvince.ItemsSource = (from province in provinces
                                             orderby province.abbreviation
                                             select province).ToList();

            cboAssurancePrivee.DataContext = myBdd.CompagnieAssurances.ToList();
        }
コード例 #5
0
        } // bthEnregistrerAdmission_Click

        public Lit trouverLit(HopitalEntities hopital, int categorieDesiree, int idDept)
        {
            int cat = categorieDesiree;
            Lit sLit;

            do
            {
                sLit = hopital.Lits.Where(lit => lit.IdTypeLit == cat &&
                                          lit.IdDepartement == idDept &&
                                          lit.Occupe == false).FirstOrDefault();
                if (sLit == null)
                {
                    cat++;
                }
            } while (sLit == null && cat <= 3);

            return(sLit);
        }
コード例 #6
0
        public void afficherPatient(HopitalEntities bdd, Patient pat)
        {
            // Nettoyage des champs non-obligatoires avant d'affichage d'un autre patient
            txtTelephone.Text       = string.Empty;
            txtAdresse.Text         = string.Empty;
            txtAssurancePrivee.Text = string.Empty;
            txtParentNom.Text       = string.Empty;
            txtParentTelephone.Text = string.Empty;

            // On retrouve le patient dans la BDD et affiches ses attributs
            Patient sPatient = bdd.Patients.SingleOrDefault(x => x.NumAssuranceMaladie.Trim() == pat.NumAssuranceMaladie.Trim());

            if (sPatient != null)
            {
                cboNAM.SelectedItem          = sPatient;
                cboNom.SelectedItem          = sPatient;
                txtPrenom.Text               = sPatient.Prenom;
                txtTelephone.Text            = sPatient.Telephone;
                txtAdresse.Text              = sPatient.Adresse.Trim() + " " + sPatient.Ville.Trim() + " " + sPatient.Province + " " + sPatient.CodePostal;
                dpDateNaissance.SelectedDate = sPatient.DateNaissance;

                if (sPatient.CompagnieAssurance == null)
                {
                    txtAssurancePrivee.Text = "Aucune";
                }
                else
                {
                    txtAssurancePrivee.Text = sPatient.CompagnieAssurance.NomCompagnie;
                }

                if (sPatient.IdParent != null)
                {
                    txtParentNom.Text       = sPatient.Parent.Nom.Trim() + ", " + sPatient.Parent.Prenom.Trim();
                    txtParentTelephone.Text = sPatient.Parent.Telephone;
                }
            }
        }
コード例 #7
0
 public MedecinAccueil()
 {
     InitializeComponent();
     myBdd = new HopitalEntities();
 }
コード例 #8
0
 private void Window_Loaded(object sender, RoutedEventArgs e)
 {
     myBdd = new HopitalEntities();
     afficherMedecins();
 }
コード例 #9
0
 public AjouterAdmission(Patient patient)
 {
     InitializeComponent();
     myBdd = new HopitalEntities();
     afficherPatient(myBdd, patient);
 }
コード例 #10
0
 public AjouterAdmission()
 {
     InitializeComponent();
     myBdd = new HopitalEntities();
 }
コード例 #11
0
 public AfficherPatient(Patient pat)
 {
     InitializeComponent();
     myBdd = new HopitalEntities();
     afficherPatient(myBdd, pat);
 }
コード例 #12
0
 public AfficherPatient()
 {
     InitializeComponent();
     myBdd = new HopitalEntities();
 }