Ejemplo n.º 1
0
 public static List <ModelReference> Liste(String query)
 {
     try
     {
         return(ModelReferenceDao.getListModelReference(query));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de retourner la liste des élements", ex);
     }
 }
Ejemplo n.º 2
0
 public static bool Delete(long id)
 {
     try
     {
         return(ModelReferenceDao.getDeleteModelReference(id));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de supprimer cette enregistrement", ex);
     }
 }
Ejemplo n.º 3
0
 public ModelReference Insert()
 {
     try
     {
         return(ModelReferenceDao.getAjoutModelReference(model));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'inserer cette enregistrement", ex);
     }
 }
Ejemplo n.º 4
0
 public bool Update()
 {
     try
     {
         return(ModelReferenceDao.getUpdateModelReference(model));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de modifier cette enregistrement", ex);
     }
 }
Ejemplo n.º 5
0
 public static ModelReference One(ElementReference element)
 {
     try
     {
         return(ModelReferenceDao.getOneModelReference(element));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'atteindre l'enregistrement", ex);
     }
 }