Ejemplo n.º 1
0
 public static List <FamillesArticle> List(string y)
 {
     try
     {
         return(FamillesArticleDAO.listFamillesArticle(y));
     }
     catch (Exception ex)
     {
         throw new Exception("Liste Impossible", ex);
     }
 }
Ejemplo n.º 2
0
 public static bool Delete(FamillesArticle y)
 {
     try
     {
         return(FamillesArticleDAO.deleteFamillesArticle(y));
     }
     catch (Exception ex)
     {
         throw new Exception("Suppression Impossible", ex);
     }
 }
Ejemplo n.º 3
0
 public static bool Update(FamillesArticle y)
 {
     try
     {
         return(FamillesArticleDAO.updateFamillesArticle(y));
     }
     catch (Exception ex)
     {
         throw new Exception("Modification Impossible", ex);
     }
 }
Ejemplo n.º 4
0
 public static FamillesArticle Save(FamillesArticle y)
 {
     try
     {
         return(FamillesArticleDAO.saveFamillesArticle(y));
     }
     catch (Exception ex)
     {
         throw new Exception("Insertion Impossible", ex);
     }
 }
Ejemplo n.º 5
0
 public static FamillesArticle One(Int32 y)
 {
     try
     {
         return(FamillesArticleDAO.oneFamillesArticle(y));
     }
     catch (Exception ex)
     {
         throw new Exception("Retour Impossible", ex);
     }
 }
Ejemplo n.º 6
0
 public static Int32 Current(FamillesArticle y)
 {
     try
     {
         return(FamillesArticleDAO.currentFamillesArticle(y));
     }
     catch (Exception ex)
     {
         throw new Exception("Retour Impossible", ex);
     }
 }