public void payment_method_update(c_payment_method t) { payment_method_business db = new payment_method_business(); throw new NotImplementedException(); }
public List <V_payment_method> payment_method_Read() { payment_method_business db = new payment_method_business(); return(db.Read()); }
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)); }
public void payment_method_insert(c_payment_method t) { payment_method_business db = new payment_method_business(); db.Create(t); }
public void payment_method_Delete(int id) { payment_method_business db = new payment_method_business(); db.Delete(id); }