示例#1
0
        public void payment_method_update(c_payment_method t)
        {
            payment_method_business db = new payment_method_business();

            throw new NotImplementedException();
        }
示例#2
0
        public List <V_payment_method> payment_method_Read()
        {
            payment_method_business db = new payment_method_business();

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

            return(db.FilterRead(filtre));
        }
示例#4
0
        public void payment_method_insert(c_payment_method t)
        {
            payment_method_business db = new payment_method_business();

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

            db.Delete(id);
        }