Beispiel #1
0
        public void chercher_List_Type_Conge(String criter, out string erreur, out List <type_conge> typeconge, out Boolean exist)
        {
            erreur = null;
            type_conge typec = new type_conge();

            typeconge = new List <type_conge>();
            exist     = false;
            rsql      = "select * from TYPE_CONGE where " + criter;
            cnx.select(rsql, out erreur, out dr);


            if (erreur == null)
            {
                if (dr.HasRows == true)
                {
                    exist = true;
                    while (dr.Read())
                    {
                        typec               = new type_conge();
                        typec.IDCONGES      = dr.GetString(0);
                        typec.Desgination   = dr.GetString(1);
                        typec.Conge_Paye    = dr.GetString(2);
                        typec.JourOuvrable  = dr.GetString(3);
                        typec.MajCongePaye  = dr.GetString(4);
                        typec.Specification = dr.GetString(5);


                        typeconge.Add(typec);
                    }
                    dr.Close();
                }
            }
        }
Beispiel #2
0
        public void ajouter_type_conge(type_conge pr, out String erreur)
        {
            //dr.Close();
            erreur = null;
            rsql   = "insert into TYPE_CONGE values('" + pr.IDCONGES + "','" + pr.Desgination + "' ,'" + pr.Conge_Paye + "','" + pr.JourOuvrable + "' ,'" + pr.MajCongePaye + "' ,'" + pr.Specification + "' ) ";

            cnx.maj(rsql, out erreur);
        }
Beispiel #3
0
 public void chercher_Type_conge(string idconge, out string erreur, out type_conge typec, out Boolean exist)
 {
     erreur = null;
     typec  = new type_conge();
     exist  = false;
     rsql   = "select * from type_conge where cin='" + idconge + "' ";
     cnx.select(rsql, out erreur, out dr);
     if (erreur == null)
     {
         if (dr.HasRows == true)
         {
             exist = true;
             dr.Read();
             typec.IDCONGES      = dr.GetString(0);
             typec.Desgination   = dr.GetString(1);
             typec.Conge_Paye    = dr.GetString(2);
             typec.JourOuvrable  = dr.GetString(3);
             typec.MajCongePaye  = dr.GetString(4);
             typec.Specification = dr.GetString(5);
         }
         dr.Close();
     }
 }
Beispiel #4
0
 public void modifier_type_conge(type_conge tc, out String erreur)
 {
     erreur = null;
     rsql   = "update TYPE_CONGE set DESGIN_CONGE='" + tc.Desgination + "' ,conge_paye='" + tc.Conge_Paye + "', jour_ouvrable='" + tc.JourOuvrable + "' ,maj_conge_pay='" + tc.MajCongePaye + "',specification='" + tc.Specification + "'  where id_conge='" + tc.IDCONGES + "' ";
     cnx.maj(rsql, out erreur);
 }
Beispiel #5
0
 public void supprimer_type_conge(type_conge typeconge, out String erreur)
 {
     erreur = null;
     rsql   = "delete from TYPE_CONGE  where ID_CONGE='" + typeconge.IDCONGES + "' ";
     cnx.maj(rsql, out erreur);
 }