Ejemplo n.º 1
0
 public static void updatePersonne(PersonneDAO p)
 {
     PersonneDAL.updatePersonne(p);
 }
Ejemplo n.º 2
0
 public static void insertPersonne(PersonneDAO p)
 {
     PersonneDAL.insertPersonne(p);
 }
Ejemplo n.º 3
0
        /*public static int getAuth(string email, string mdp)
         * {
         * int x = PersonneDAL.getAuth(email, mdp);
         *
         *  return x;
         * }*/

        public static PersonneDAO getPersonne(int id)
        {
            PersonneDAO p = PersonneDAL.getPersonne(id);

            return(p);
        }