コード例 #1
0
ファイル: ReceiptEntries.cs プロジェクト: kimykunjun/test
 public ReceiptEntries( string strCode, string strDescription, int nQuantity, decimal mUnitPrice, string strReferenceNo, Promotion promotionstrDiscountCode, Promotion promotionstrFreebieCode, Receipt receipt )
 {
     this._strCode = strCode;
     this._strDescription = strDescription;
     this._nQuantity = nQuantity;
     this._mUnitPrice = mUnitPrice;
     this._strReferenceNo = strReferenceNo;
     this._promotionstrDiscountCode = promotionstrDiscountCode;
     this._promotionstrFreebieCode = promotionstrFreebieCode;
     this._receipt = receipt;
 }
コード例 #2
0
ファイル: ItemPromotion.cs プロジェクト: kimykunjun/test
        public ItemPromotion( Id id, int nCategoryTypeID, int nGroupID, Promotion promotion, Product productstrCode )
        {
            this._id = id;
            this._nCategoryTypeID = nCategoryTypeID;
            this._nGroupID = nGroupID;
            this._promotion = promotion;
            this._productstrCode = productstrCode;

            _id.StringId1 = _promotion.Id;
            _id.StringId2 = _productstrCode.Id;
        }
コード例 #3
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;
 }
コード例 #4
0
ファイル: PromotionBranch.cs プロジェクト: kimykunjun/test
 public PromotionBranch(Branch branch, Promotion promotion)
 {
     this._branch = branch;
     this._promotion = promotion;
 }
コード例 #5
0
ファイル: PromotionFreebie.cs プロジェクト: kimykunjun/test
 public PromotionFreebie(Id id, Product strItemCode, Promotion promotion )
 {
     this._id = id;
     this._strItemCode = strItemCode;
     this._promotion = promotion;
 }
コード例 #6
0
ファイル: ReceiptFreebie.cs プロジェクト: kimykunjun/test
 public ReceiptFreebie( string strItemCode, Promotion promotion, Receipt receipt )
 {
     this._strItemCode = strItemCode;
     this._promotion = promotion;
     this._receipt = receipt;
 }
コード例 #7
0
 public PromotionReceiptSalesCategory(SalesCategory salesCategory, Promotion promotion)
 {
     this._salesCategory = salesCategory;
     this._promotion     = promotion;
 }
コード例 #8
0
ファイル: ReceiptFreebie.cs プロジェクト: kimykunjun/test
 public ReceiptFreebie(string strItemCode, Promotion promotion, Receipt receipt)
 {
     this._strItemCode = strItemCode;
     this._promotion   = promotion;
     this._receipt     = receipt;
 }
コード例 #9
0
ファイル: PromotionPackage.cs プロジェクト: kimykunjun/test
 public PromotionPackage(Package package, Promotion promotion)
 {
     this._package = package;
     this._promotion = promotion;
 }
コード例 #10
0
ファイル: ReceiptEntries.cs プロジェクト: kimykunjun/test
 public ReceiptEntries(string strCode, string strDescription, int nQuantity, decimal mUnitPrice, string strReferenceNo, Promotion promotionstrDiscountCode, Promotion promotionstrFreebieCode, Receipt receipt)
 {
     this._strCode                  = strCode;
     this._strDescription           = strDescription;
     this._nQuantity                = nQuantity;
     this._mUnitPrice               = mUnitPrice;
     this._strReferenceNo           = strReferenceNo;
     this._promotionstrDiscountCode = promotionstrDiscountCode;
     this._promotionstrFreebieCode  = promotionstrFreebieCode;
     this._receipt                  = receipt;
 }