コード例 #1
0
ファイル: Receipt.cs プロジェクト: kimykunjun/test
 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
ファイル: SalesCategory.cs プロジェクト: kimykunjun/test
 public void AddReward(Reward reward)
 {
     reward.SalesCategory = this;
     _rewardses.Add(reward);
 }
コード例 #4
0
ファイル: RewardsBranch.cs プロジェクト: kimykunjun/test
 public RewardsBranch(Branch branch, Reward rewards)
 {
     this._branch = branch;
     this._rewards = rewards;
 }
コード例 #5
0
ファイル: Receipt.cs プロジェクト: kimykunjun/test
 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;
 }