示例#1
0
 public static List <IOEMDevice> ListEx(Pointeuse pointeuse, List <Employe> employes, DateTime[] dates, string adresse)
 {
     try
     {
         return(IOEMDeviceDAO.getListNoByEmployesDates(pointeuse, employes, dates, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#2
0
 public static List <IOEMDevice> List(Pointeuse pointeuse, Employe employe, DateTime debut, DateTime fin, string adresse)
 {
     try
     {
         return(IOEMDeviceDAO.getListByEmployeDates(pointeuse, employe, debut, fin, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#3
0
 public static IOEMDevice One(Pointeuse pointeuse, Employe employe, DateTime date, string adresse)
 {
     try
     {
         return(IOEMDeviceDAO.getOne(pointeuse, employe, date, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#4
0
 public static bool Delete(Pointeuse pointeuse, Employe employe, DateTime debut, DateTime fin, string adresse)
 {
     try
     {
         return(IOEMDeviceDAO.getDelete(pointeuse, employe, debut, fin, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#5
0
 public static bool Delete(Pointeuse pointeuse, string adresse)
 {
     try
     {
         return(IOEMDeviceDAO.getDelete(pointeuse, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
示例#6
0
 public static bool Insert(IOEMDevice bean, string adresse)
 {
     try
     {
         return(IOEMDeviceDAO.getInsert(bean, adresse));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }