コード例 #1
0
ファイル: GIRO.cs プロジェクト: kimykunjun/test
 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
ファイル: MemberPackage.cs プロジェクト: kimykunjun/test
 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
ファイル: PackageClass.cs プロジェクト: kimykunjun/test
 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
ファイル: PackageBranch.cs プロジェクト: kimykunjun/test
 public PackageBranch(Branch branch, Package packageCode)
 {
     this._branch = branch;
     this._packageCode = packageCode;
 }
コード例 #6
0
ファイル: PromotionPackage.cs プロジェクト: kimykunjun/test
 public PromotionPackage(Package package, Promotion promotion)
 {
     this._package = package;
     this._promotion = promotion;
 }
コード例 #7
0
ファイル: Category.cs プロジェクト: kimykunjun/test
 public void AddPackage(Package package)
 {
     package.Category = this;
     _packages.Add(package);
 }