コード例 #1
0
ファイル: RistourneBll.cs プロジェクト: dowesw/GESTION_CAISSE
 public static List <Ristourne> Liste(String query)
 {
     try
     {
         return(RistourneDao.getListRistourne(query));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de retourner la liste des élements", ex);
     }
 }
コード例 #2
0
ファイル: RistourneBll.cs プロジェクト: dowesw/GESTION_CAISSE
 public static bool Delete(long id)
 {
     try
     {
         return(RistourneDao.getDeleteRistourne(id));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de supprimer cette enregistrement", ex);
     }
 }
コード例 #3
0
ファイル: RistourneBll.cs プロジェクト: dowesw/GESTION_CAISSE
 public Ristourne Insert()
 {
     try
     {
         return(RistourneDao.getAjoutRistourne(ristourne));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'inserer cette enregistrement", ex);
     }
 }
コード例 #4
0
ファイル: RistourneBll.cs プロジェクト: dowesw/GESTION_CAISSE
 public bool Update()
 {
     try
     {
         return(RistourneDao.getUpdateRistourne(ristourne));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible de modifier cette enregistrement", ex);
     }
 }
コード例 #5
0
ファイル: RistourneBll.cs プロジェクト: dowesw/GESTION_CAISSE
 public static Ristourne One(long id)
 {
     try
     {
         return(RistourneDao.getOneRistourne(id));
     }
     catch (Exception ex)
     {
         throw new Exception("Impossible d'atteindre l'enregistrement", ex);
     }
 }