Esempio n. 1
0
        //ajouter un bilan
        static public void AddBilanVisite(string praticien, string visiteur, string date, string motif, string impact)
        {
            date = Convert.ToDateTime(date).ToShortDateString();
            date = date.Replace('/', '-');
            date = date[6].ToString() + date[7].ToString() + date[8].ToString() + date[9].ToString() + date[2].ToString() + date[3].ToString() + date[4].ToString() + date[2].ToString() + date[0].ToString() + date[1].ToString();

            praticien = praticien.Replace("'", " ");
            praticien = praticien.Replace('"', ' ');

            visiteur = visiteur.Replace("'", " ");
            visiteur = visiteur.Replace('"', ' ');

            motif = motif.Replace("'", " ");
            motif = motif.Replace('"', ' ');

            impact = impact.Replace("'", " ");
            impact = impact.Replace('"', ' ');

            int id   = Convert.ToInt16(Manager.SelectMaxIdBilan()[0][0]);
            int unId = id + 1;

            string sql = "INSERT INTO rapport (id, date, motif, bilan, idMedecin, idVisiteur) VALUES (" + unId + ",'" + date + "', '" + motif + "', '" + impact + "', '" + praticien + "', '" + visiteur + "')";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 2
0
        //modification utilisateur
        static public void UpdateVisteur(string unNom, string unPrenom, string uneAdresse, string uneDate, string unIdVille, string unCp, int id)
        {
            unPrenom = unPrenom.Replace("'", " ");
            unPrenom = unPrenom.Replace('"', ' ');

            unNom = unNom.Replace("'", " ");
            unNom = unNom.Replace('"', ' ');

            uneAdresse = uneAdresse.Replace("'", " ");
            uneAdresse = uneAdresse.Replace('"', ' ');

            unIdVille = unIdVille.Replace("'", " ");
            unIdVille = unIdVille.Replace('"', ' ');

            unCp = unCp.Replace("'", " ");
            unCp = unCp.Replace('"', ' ');

            uneDate = uneDate.Replace('/', '-');
            uneDate = uneDate[6].ToString() + uneDate[7].ToString() + uneDate[8].ToString() + uneDate[9].ToString() + uneDate[2].ToString() + uneDate[3].ToString() + uneDate[4].ToString() + uneDate[2].ToString() + uneDate[0].ToString() + uneDate[1].ToString();

            uneDate = uneDate.Replace("'", " ");
            uneDate = uneDate.Replace('"', ' ');

            string sql = "UPDATE visiteur SET nom = '" + unNom + "', prenom ='" + unPrenom + "', adresse ='" + uneAdresse + "', dateEmbauche = '" + uneDate + "', idVille = '" + unIdVille + "', cdp ='" + unCp + "' WHERE id =" + id;

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 3
0
        //Suppression des rapports et des échantillions en fonction d'un praticiens
        static public void DeleteRapports(int unId)
        {
            string sql = "DELETE FROM offrir WHERE offrir.idRapport = '" + unId + "'";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
            string supp = "DELETE FROM rapport WHERE rapport.id = '" + unId + "'";

            Passerelle.InsertUpdateDel(Manager.conenct(), supp);
        }
Esempio n. 4
0
        //suppression d'un visiteur
        static public void DeleteVisiteur(int unId, string unNom, string unPrenom)
        {
            //pour supprimer un visiteur, il faut d'abord supprime les rapports où le visiteur était en charge
            string req = "DELETE FROM rapport WHERE idVisiteur = " + unId;

            Passerelle.InsertUpdateDel(Manager.conenct(), req);
            string sql = "DELETE FROM visiteur WHERE nom ='" + unNom + "' AND prenom ='" + unPrenom + "'";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 5
0
        //Modification d'un rapport
        static public void UpdateRapport(int id, string uneDate, string unMotif, string unBilan)
        {
            uneDate = Convert.ToDateTime(uneDate).ToShortDateString();
            uneDate = uneDate.Replace('/', '-');
            uneDate = uneDate[6].ToString() + uneDate[7].ToString() + uneDate[8].ToString() + uneDate[9].ToString() + uneDate[2].ToString() + uneDate[3].ToString() + uneDate[4].ToString() + uneDate[2].ToString() + uneDate[0].ToString() + uneDate[1].ToString();
            uneDate = uneDate.Replace("'", " ");
            uneDate = uneDate.Replace('"', ' ');

            string sql = "UPDATE rapport SET rapport.motif = '" + unMotif + "' , rapport.bilan = '" + unBilan + "', rapport.date = '" + uneDate + "'  WHERE rapport.id = " + id;

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 6
0
        static public void DeleteFam(string str)
        {
            string sql = "Select medicament.id from medicament inner join famille on medicament.idFamille = famille.id where famille.libelle = '" + str + "'";

            try
            {
                string temp  = Passerelle.Query(Manager.conenct(), sql)[0][0];
                int    tempe = Convert.ToInt32(temp);
                MessageBox.Show("Famille non vide");
            }
            catch
            {
                sql = "delete from famille where libelle = '" + str + "'";
                Passerelle.InsertUpdateDel(Manager.conenct(), sql);
            }
        }
Esempio n. 7
0
        static public void ModifMedoc(string idmedoc, string newnom, string nomfam, string compo, string effets, string contreindic)
        {
            compo = compo.Replace("'", " ");
            compo = compo.Replace('"', ' ');

            effets = effets.Replace("'", " ");
            effets = effets.Replace('"', ' ');

            contreindic = contreindic.Replace("'", " ");
            contreindic = contreindic.Replace('"', ' ');

            int    idfam = SelectidFamFromNom(nomfam);
            string sql   = "Update medicament set nomCommercial = '" + newnom + "',idFamille =" + idfam + ",composition = '" + compo + "',effets = '" + effets + "',contreIndication = '" + contreindic + "' where id = '" + idmedoc + "'";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 8
0
        //Ajout d'un medecin
        static public void InsertMedecin(string newNom, string newPrenom, string newAdresse, string newVille, string newTelephone, string newIdSpecialiste)
        {
            newPrenom = newPrenom.Replace("'", " ");
            newPrenom = newPrenom.Replace('"', ' ');

            newNom = newNom.Replace("'", " ");
            newNom = newNom.Replace('"', ' ');

            newAdresse = newAdresse.Replace("'", " ");
            newAdresse = newAdresse.Replace('"', ' ');

            newVille = newVille.Replace("'", " ");
            newVille = newVille.Replace('"', ' ');

            newTelephone = newTelephone.Replace("'", " ");
            newTelephone = newTelephone.Replace('"', ' ');

            string sql = "INSERT INTO medecin ( nom, prenom, adresse, idVille, telephone, idSpecialiste) VALUES ('" + newNom + "', '" + newPrenom + "', '" + newAdresse + "', '" + newVille + "', '" + newTelephone + "', '" + newIdSpecialiste + "')";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 9
0
        //Modification d'un medecin avec son nom et son prenom
        static public void ModifMedecin(string newNom, string newPrenom, string newAdresse, string newVille, string newTelephone, string newIdSpecialiste, int unId)
        {
            newPrenom = newPrenom.Replace("'", " ");
            newPrenom = newPrenom.Replace('"', ' ');

            newNom = newNom.Replace("'", " ");
            newNom = newNom.Replace('"', ' ');

            newAdresse = newAdresse.Replace("'", " ");
            newAdresse = newAdresse.Replace('"', ' ');

            newVille = newVille.Replace("'", " ");
            newVille = newVille.Replace('"', ' ');

            newTelephone = newTelephone.Replace("'", " ");
            newTelephone = newTelephone.Replace('"', ' ');

            string sql = "UPDATE medecin SET nom = '" + newNom + "' ,prenom = '" + newPrenom + "' ,adresse = '" + newAdresse + "' ,idVille = '" + newVille + "' ,telephone = '" + newTelephone + "' ,idSpecialiste = '" + newIdSpecialiste + "'  where id = " + unId;

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 10
0
        static public void InsertMedoc(string NomMedoc, string nomfamille, string Compo, string Effets, string Contreindic)
        {
            Compo = Compo.Replace("'", " ");
            Compo = Compo.Replace('"', ' ');

            Effets = Effets.Replace("'", " ");
            Effets = Effets.Replace('"', ' ');

            Contreindic = Contreindic.Replace("'", " ");
            Contreindic = Contreindic.Replace('"', ' ');

            string sql = "Insert into medicament(id,nomCommercial,idFamille,composition,effets,contreindication) ";

            if (SelectidFamFromNom(nomfamille) == 0)
            {
                Passerelle.InsertUpdateDel(Manager.conenct(), "Insert Into famille(id,libelle) Values(" + (GetMaxIDFam() + 1) + ",'" + nomfamille + "')");
            }
            sql += "Values(" + (GetMaxIDMed() + 1) + ",'" + NomMedoc + "','" + SelectidFamFromNom(nomfamille) + "',";
            sql += "'" + Compo + "','" + Effets + "','" + Contreindic + "')";
            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 11
0
        //ajout d'un visiteur
        static public void InsertVisiteur(string unNom, string unPrenom, string uneAdresse, string unIdVille, string unLogin, string unMdp, string uneDate, string cp)
        {
            uneDate = Convert.ToDateTime(uneDate).ToShortDateString();
            uneDate = uneDate.Replace('/', '-');
            uneDate = uneDate[6].ToString() + uneDate[7].ToString() + uneDate[8].ToString() + uneDate[9].ToString() + uneDate[2].ToString() + uneDate[3].ToString() + uneDate[4].ToString() + uneDate[2].ToString() + uneDate[0].ToString() + uneDate[1].ToString();

            unPrenom = unPrenom.Replace("'", " ");
            unPrenom = unPrenom.Replace('"', ' ');

            unNom = unNom.Replace("'", " ");
            unNom = unNom.Replace('"', ' ');

            uneAdresse = uneAdresse.Replace("'", " ");
            uneAdresse = uneAdresse.Replace('"', ' ');

            unIdVille = unIdVille.Replace("'", " ");
            unIdVille = unIdVille.Replace('"', ' ');

            uneDate = uneDate.Replace("'", " ");
            uneDate = uneDate.Replace('"', ' ');

            unLogin = unLogin.Replace("'", " ");
            unLogin = unLogin.Replace('"', ' ');

            unMdp = unMdp.Replace("'", " ");
            unMdp = unMdp.Replace('"', ' ');

            cp = cp.Replace("'", " ");
            cp = cp.Replace('"', ' ');

            int id   = Convert.ToInt16(Manager.SelectMaxIdVisiteur()[0][0]);
            int unId = id + 1;

            string sql = "INSERT INTO visiteur (id, nom, prenom, login, mdp, adresse, dateEmbauche, idVille, cdp) VALUES (" + unId + ",'" + unNom + "', '" + unPrenom + "', '" + unLogin + "', '" + unMdp + "', '" + uneAdresse + "', '" + uneDate + "', '" + unIdVille + "', '" + cp + "')";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 12
0
        //Suppression d'un medecin avec son nom et prenom dans le formulaire
        static public void DeleteMedecin(int unId)
        {
            string sql = "delete from medecin where medecin.id = '" + unId + "'";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 13
0
        //ajouter les échantillons dans offrir
        static public void AddOffre(int idMedicament, int idRapport, int quantite)
        {
            string sql = "INSERT INTO offrir (idMedicament, idRapport, quantite) VALUES (" + idMedicament + ", " + idRapport + ", " + quantite + ")";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }
Esempio n. 14
0
        static public void DeleteMedoc(string str)
        {
            string sql = "delete from medicament where id = '" + str + "'";

            Passerelle.InsertUpdateDel(Manager.conenct(), sql);
        }