Пример #1
0
 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
        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
 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
 public PromotionBranch(Branch branch, Promotion promotion)
 {
     this._branch = branch;
     this._promotion = promotion;
 }
Пример #5
0
 public PromotionFreebie(Id id, Product strItemCode, Promotion promotion )
 {
     this._id = id;
     this._strItemCode = strItemCode;
     this._promotion = promotion;
 }
Пример #6
0
 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
 public ReceiptFreebie(string strItemCode, Promotion promotion, Receipt receipt)
 {
     this._strItemCode = strItemCode;
     this._promotion   = promotion;
     this._receipt     = receipt;
 }
Пример #9
0
 public PromotionPackage(Package package, Promotion promotion)
 {
     this._package = package;
     this._promotion = promotion;
 }
Пример #10
0
 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;
 }