Esempio n. 1
0
 public MemberCreditPackage(DateTime dtPurchaseDate, DateTime dtStartDate, DateTime dtExpiryDate, bool fFree, string strReceiptNo, int nStatusID, string strRemarks, DateTime dtLastEditDate, decimal mTopupAmount, int nTempPackageID, CreditPackage creditPackage, Employee employee, Member member)
 {
     this._dtPurchaseDate = dtPurchaseDate;
     this._dtStartDate    = dtStartDate;
     this._dtExpiryDate   = dtExpiryDate;
     this._fFree          = fFree;
     this._strReceiptNo   = strReceiptNo;
     this._nStatusID      = nStatusID;
     this._strRemarks     = strRemarks;
     this._dtLastEditDate = dtLastEditDate;
     this._mTopupAmount   = mTopupAmount;
     this._nTempPackageID = nTempPackageID;
     this._creditPackage  = creditPackage;
     this._employee       = employee;
     this._member         = member;
 }
 public CreditPackageRestriction(bool fAllowDiscount, CreditPackage creditPackage, Package package)
 {
     this._fAllowDiscount = fAllowDiscount;
     this._creditPackage  = creditPackage;
     this._package        = package;
 }
Esempio n. 3
0
 public void AddCreditPackage(CreditPackage creditPackage)
 {
     creditPackage.Category = this;
     _creditPackages.Add(creditPackage);
 }