Beispiel #1
0
 public RewardsCatalogue( string strDescription, double dRewardsPoints, DateTime dtValidStart, DateTime dtValidEnd, Product productstrItemCode )
 {
     this._strDescription = strDescription;
     this._dRewardsPoints = dRewardsPoints;
     this._dtValidStart = dtValidStart;
     this._dtValidEnd = dtValidEnd;
     this._productstrItemCode = productstrItemCode;
 }
Beispiel #2
0
 public SalonUse( DateTime dtDate, int nQuantity, Branch branch, Product product, Employee employee )
 {
     this._dtDate = dtDate;
     this._nQuantity = nQuantity;
     this._branch = branch;
     this._product = product;
     this._employee = employee;
 }
Beispiel #3
0
 public ProductInventory( string strBin, int nQuantity, int nMinQuantity, int nMaxQuantity, int nReorderQuantity, Branch branch, Product product )
 {
     this._strBin = strBin;
     this._nQuantity = nQuantity;
     this._nMinQuantity = nMinQuantity;
     this._nMaxQuantity = nMaxQuantity;
     this._nReorderQuantity = nReorderQuantity;
     this._branch = branch;
     this._product = product;
 }
Beispiel #4
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;
        }
Beispiel #5
0
 public PromotionFreebie(Id id, Product strItemCode, Promotion promotion )
 {
     this._id = id;
     this._strItemCode = strItemCode;
     this._promotion = promotion;
 }
Beispiel #6
0
 public IBTEntry( int nQuantity, IBT iBT, Product productstrItemCode )
 {
     this._nQuantity = nQuantity;
     this._iBT = iBT;
     this._productstrItemCode = productstrItemCode;
 }
Beispiel #7
0
 public StockRequestEntry( Product strItemCode, int nQuantity, StockRequest stockRequest )
 {
     this._strItemCode = strItemCode;
     this._nQuantity = nQuantity;
     this._stockRequest = stockRequest;
 }