示例#1
0
 public Promotion(string strDescription, int nPromotionTypeID, bool fItemDiscount, decimal mMinimumAmount, DateTime dtValidStart, DateTime dtValidEnd, double dDiscountPercent, double dDiscountValue, DiscountCategory discountCategory, Employee approvedStatus)
 {
     this._strDescription   = strDescription;
     this._nPromotionTypeID = nPromotionTypeID;
     this._fItemDiscount    = fItemDiscount;
     this._mMinimumAmount   = mMinimumAmount;
     this._dtValidStart     = dtValidStart;
     this._dtValidEnd       = dtValidEnd;
     this._dDiscountPercent = dDiscountPercent;
     this._dDiscountValue   = dDiscountValue;
     this._discountCategory = discountCategory;
     this._approvedStatus   = approvedStatus;
 }
示例#2
0
 public JobPosition(string strDescription, DiscountCategory discountCategory)
 {
     this._strDescription   = strDescription;
     this._discountCategory = discountCategory;
 }
示例#3
0
 public LoyaltyStatus(string strDescription, DiscountCategory discountCategory)
 {
     this._strDescription   = strDescription;
     this._discountCategory = discountCategory;
 }