示例#1
0
 public void discountcart_update(c_discountcart t)
 {
     discountcart_business db = new discountcart_business();
 }
示例#2
0
        public List <V_discountcart> discountcart_Read()
        {
            discountcart_business db = new discountcart_business();

            return(db.Read());
        }
示例#3
0
        public V_discountcart discountcart_FilterRead(Expression <Func <V_discountcart, bool> > filtre)
        {
            discountcart_business db = new discountcart_business();

            return(db.FilterRead(filtre));
        }
示例#4
0
        public void discountcart_insert(c_discountcart t)
        {
            discountcart_business db = new discountcart_business();

            db.Create(t);
        }
示例#5
0
        public void discountcart_Delete(int id)
        {
            discountcart_business db = new discountcart_business();

            db.Delete(id);
        }