示例#1
0
 public Receipt( DateTime dtDate, int nShiftID, int nTerminalID, decimal mNettAmount, decimal mGSTAmount, decimal mTotalAmount, decimal mVoucherAmount, bool fVoid, string strReferenceNo, string strParentReceiptNo, string strChildReceiptNo, Branch branch, Category category, Employee employeenSalespersonID, Employee employeenCashierID, Employee employeenTherapistID, Member member, Promotion promotionstrDiscountCode, Promotion promotionstrFreebieCode, Reward reward, Tax tax )
 {
     this._dtDate = dtDate;
     this._nShiftID = nShiftID;
     this._nTerminalID = nTerminalID;
     this._mNettAmount = mNettAmount;
     this._mGSTAmount = mGSTAmount;
     this._mTotalAmount = mTotalAmount;
     this._mVoucherAmount = mVoucherAmount;
     this._fVoid = fVoid;
     this._strReferenceNo = strReferenceNo;
     this._strParentReceiptNo = strParentReceiptNo;
     this._strChildReceiptNo = strChildReceiptNo;
     this._branch = branch;
     this._category = category;
     this._employeenSalespersonID = employeenSalespersonID;
     this._employeenCashierID = employeenCashierID;
     this._employeenTherapistID = employeenTherapistID;
     this._member = member;
     this._promotionstrDiscountCode = promotionstrDiscountCode;
     this._promotionstrFreebieCode = promotionstrFreebieCode;
     this._reward = reward;
     this._tax = tax;
 }
示例#2
0
 public RewardsBranch(Branch branch, Reward rewards)
 {
     this._branch  = branch;
     this._rewards = rewards;
 }
示例#3
0
 public void AddReward(Reward reward)
 {
     reward.SalesCategory = this;
     _rewardses.Add(reward);
 }
示例#4
0
 public RewardsBranch(Branch branch, Reward rewards)
 {
     this._branch = branch;
     this._rewards = rewards;
 }
示例#5
0
 public Receipt(DateTime dtDate, int nShiftID, int nTerminalID, decimal mNettAmount, decimal mGSTAmount, decimal mTotalAmount, decimal mVoucherAmount, bool fVoid, string strReferenceNo, string strParentReceiptNo, string strChildReceiptNo, Branch branch, Category category, Employee employeenSalespersonID, Employee employeenCashierID, Employee employeenTherapistID, Member member, Promotion promotionstrDiscountCode, Promotion promotionstrFreebieCode, Reward reward, Tax tax)
 {
     this._dtDate                   = dtDate;
     this._nShiftID                 = nShiftID;
     this._nTerminalID              = nTerminalID;
     this._mNettAmount              = mNettAmount;
     this._mGSTAmount               = mGSTAmount;
     this._mTotalAmount             = mTotalAmount;
     this._mVoucherAmount           = mVoucherAmount;
     this._fVoid                    = fVoid;
     this._strReferenceNo           = strReferenceNo;
     this._strParentReceiptNo       = strParentReceiptNo;
     this._strChildReceiptNo        = strChildReceiptNo;
     this._branch                   = branch;
     this._category                 = category;
     this._employeenSalespersonID   = employeenSalespersonID;
     this._employeenCashierID       = employeenCashierID;
     this._employeenTherapistID     = employeenTherapistID;
     this._member                   = member;
     this._promotionstrDiscountCode = promotionstrDiscountCode;
     this._promotionstrFreebieCode  = promotionstrFreebieCode;
     this._reward                   = reward;
     this._tax = tax;
 }