Beispiel #1
0
 public static List <Pointage> List(string query, bool full, string queryCount, string adresse)
 {
     try
     {
         return(PointageDAO.List(query, full, queryCount, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Beispiel #2
0
 public static bool InsertU(Pointage bean, string adresse)
 {
     try
     {
         return(PointageDAO.getInsert_U(bean, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Beispiel #3
0
 public static bool Update(Pointage bean, long id, string adresse)
 {
     try
     {
         return(PointageDAO.getUpdate(bean, id, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Beispiel #4
0
 public static Pointage OneById(int id)
 {
     try
     {
         return(PointageDAO.getOneById(id, false));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }