Пример #1
0
 public GIRO( string strBankBranchCode, string strAccountNo, string strRemarks, int nStatusID, Bank bank, Branch branch, Employee employee, Member member, Package package )
 {
     this._strBankBranchCode = strBankBranchCode;
     this._strAccountNo = strAccountNo;
     this._strRemarks = strRemarks;
     this._nStatusID = nStatusID;
     this._bank = bank;
     this._branch = branch;
     this._employee = employee;
     this._member = member;
     this._package = package;
 }
Пример #2
0
 public MemberPackage( DateTime dtPurchaseDate, DateTime dtStartDate, DateTime dtExpiryDate, DateTime dtWarrantyDate, bool fFree, string strReceiptNo, int nStatusID, string strRemarks, int nTempPackageID, string strTempPackageCategory, DateTime dtLastEdit, int nVoucherTypeID, string strVoucherNumber, int nBalance,int nAdjust, Employee employee, GIRO gIRO, Member member, MemberCreditPackage memberCreditPackage, Package package )
 {
     this._dtPurchaseDate = dtPurchaseDate;
     this._dtStartDate = dtStartDate;
     this._dtExpiryDate = dtExpiryDate;
     this._dtWarrantyDate = dtWarrantyDate;
     this._fFree = fFree;
     this._strReceiptNo = strReceiptNo;
     this._nStatusID = nStatusID;
     this._strRemarks = strRemarks;
     this._nTempPackageID = nTempPackageID;
     this._strTempPackageCategory = strTempPackageCategory;
     this._dtLastEdit = dtLastEdit;
     this._nVoucherTypeID = nVoucherTypeID;
     this._strVoucherNumber = strVoucherNumber;
     this._nBalance = nBalance;
     this._nAdjust=nAdjust;
     this._employee = employee;
     this._gIRO = gIRO;
     this._member = member;
     this._memberCreditPackage = memberCreditPackage;
     this._package = package;
 }
Пример #3
0
 public PackageClass(Class classd, Package packageCode)
 {
     this._class = classd;
     this._packageCode = packageCode;
 }
Пример #4
0
 public CreditPackageRestriction( bool fAllowDiscount, CreditPackage creditPackage, Package package )
 {
     this._fAllowDiscount = fAllowDiscount;
     this._creditPackage = creditPackage;
     this._package = package;
 }
Пример #5
0
 public PackageBranch(Branch branch, Package packageCode)
 {
     this._branch = branch;
     this._packageCode = packageCode;
 }
Пример #6
0
 public PromotionPackage(Package package, Promotion promotion)
 {
     this._package = package;
     this._promotion = promotion;
 }
Пример #7
0
 public void AddPackage(Package package)
 {
     package.Category = this;
     _packages.Add(package);
 }