public static void effacerPret(string numero) { try { PretDal.effacerPret(numero); } catch (Exception ec) { throw new Exception(ec.Message); } }
public static void EnregistrerTransaction(string numero, string description, float montant, DateTime date_transaction, string utilisateur) { try { PretDal.EnregistrerTransaction(numero, description, montant, date_transaction, utilisateur); } catch (Exception ec) { throw new Exception(ec.Message); } }
public static void indexe(string numero, float apayer, string devise, string d, string d1, string utilisateur) { try { PretDal.indexe(numero, apayer, devise, d, d1, utilisateur); } catch (Exception ec) { throw new Exception(ec.Message); } }
public Pret Rechercher(string code) { Pret e = new Pret(); try { e = PretDal.Rechercher(code); } catch (Exception ex) { throw new Exception(ex.Message); } return(e); }
public string PretPourRemboursement(string codecompte, string codecl, float pret, string devise, string datepret, string dateremise) { string resultat = null; try { resultat = PretDal.prepourremboursement(codecompte, codecl, pret, devise, datepret, dateremise); } catch (Exception ex) { throw new Exception(ex.Message); } return(resultat); }
public string parmois(string codecompte, float pret) { string resultat = null; try { resultat = PretDal.parmois(codecompte, pret); } catch (Exception ex) { throw new Exception(ex.Message); } return(resultat); }
public static int Modifierpret(string numerocompte, float reste) { int resultat = 0; try { resultat = PretDal.Modifierpret(numerocompte, reste); } catch (Exception ex) { throw new Exception(ex.Message); } return(resultat); }
public string rembourserdette(string codecompte, float montant) { string resultat = null; try { resultat = PretDal.rembourserdette(codecompte, montant); } catch (Exception ex) { throw new Exception(ex.Message); } return(resultat); }
public static List <Pret> TouspretCritere(string critere) { List <Pret> l = null; try { l = PretDal.TousPretcritere(critere); } catch (Exception e) { throw new Exception(e.Message); } return(l); }
public static List <Pret> Touspret() { List <Pret> l = null; try { l = PretDal.TousPret(); } catch (Exception e) { throw new Exception(e.Message); } return(l); }