示例#1
0
 public static void insertAchat(AchatDAO p)
 {
     AchatDAL.insertAchat(p);
 }
示例#2
0
 public static void supprimerAchat(int id, int id_produit)
 {
     AchatDAL.supprimerAchat(id, id_produit);
 }
示例#3
0
 public static void updateAchat(AchatDAO p)
 {
     AchatDAL.updateAchat(p);
 }
示例#4
0
        public static AchatDAO getAchat(int idAchat, int id_produit)
        {
            AchatDAO p = AchatDAL.getAchat(idAchat, id_produit);

            return(p);
        }
示例#5
0
        public static ObservableCollection <AchatDAO> listeAchats()
        {
            ObservableCollection <AchatDAO> l = AchatDAL.selectAchats();

            return(l);
        }
示例#6
0
 public AchatBLO(string dbfolder)
 {
     achatRepo = new AchatDAL(dbfolder);
 }