예제 #1
0
 public static Creneau One(Personnel pers, DateTime date, DateTime heureDebut, DateTime heureFin)
 {
     try
     {
         return(CreneauDao.getOneCreneau(pers, date, heureDebut, heureFin));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'atteindre l'enregistrement", ex);
     }
 }
예제 #2
0
 public static Creneau One(Personnel pers)
 {
     try
     {
         return(CreneauDao.getOneCreneau(pers));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'atteindre l'enregistrement", ex);
     }
 }