Ejemplo n.º 1
0
 public static List <Parametre> List(string query)
 {
     try
     {
         return(ParametreDAO.getList(query));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Ejemplo n.º 2
0
 public static Parametre OneBySociete(int id)
 {
     try
     {
         return(ParametreDAO.getOneBySociete(id));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }