Esempio n. 1
0
 public static List <Compte> Liste(String query)
 {
     try
     {
         return(CompteDao.getListCompte(query));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de retourner la liste des élements", ex);
     }
 }
Esempio n. 2
0
 public static bool Delete(long id)
 {
     try
     {
         return(CompteDao.getDeleteCompte(id));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de supprimer cette enregistrement", ex);
     }
 }
Esempio n. 3
0
 public Compte Insert()
 {
     try
     {
         return(CompteDao.getAjoutCompte(compte));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'inserer cette enregistrement", ex);
     }
 }
Esempio n. 4
0
 public bool Update()
 {
     try
     {
         return(CompteDao.getUpdateCompte(compte));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de modifier cette enregistrement", ex);
     }
 }
Esempio n. 5
0
 public static Compte One(long id)
 {
     try
     {
         return(CompteDao.getOneCompte(id));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'atteindre l'enregistrement", ex);
     }
 }