public static List <Remise> Liste(String query) { try { return(RemiseDao.getListRemise(query)); } catch (Exception ex) { throw new Exception("Impossible de retourner la liste des élements", ex); } }
public static bool Delete(long id) { try { return(RemiseDao.getDeleteRemise(id)); } catch (Exception ex) { throw new Exception("Impossible de supprimer cette enregistrement", ex); } }
public Remise Insert() { try { return(RemiseDao.getAjoutRemise(remise)); } catch (Exception ex) { throw new Exception("Impossible d'inserer cette enregistrement", ex); } }
public bool Update() { try { return(RemiseDao.getUpdateRemise(remise)); } catch (Exception ex) { throw new Exception("Impossible de modifier cette enregistrement", ex); } }
public static Remise One(long id) { try { return(RemiseDao.getOneRemise(id)); } catch (Exception ex) { throw new Exception("Impossible d'atteindre l'enregistrement", ex); } }