Beispiel #1
0
        public void inventory_update(c_inventory t)
        {
            inventory_business db = new inventory_business();

            throw new NotImplementedException();
        }
Beispiel #2
0
        public List <V_inventory> inventory_Read()
        {
            inventory_business db = new inventory_business();

            return(db.Read());
        }
Beispiel #3
0
        public V_inventory inventory_FilterRead(Expression <Func <V_inventory, bool> > filtre)
        {
            inventory_business db = new inventory_business();

            return(db.FilterRead(filtre));
        }
Beispiel #4
0
        public void inventory_insert(c_inventory t)
        {
            inventory_business db = new inventory_business();

            db.Create(t);
        }
Beispiel #5
0
        public void inventory_Delete(int id)
        {
            inventory_business db = new inventory_business();

            db.Delete(id);
        }