示例#1
0
 public GIROBatchEntry(decimal mNettAmount, decimal mGSTAmount, decimal mTotalAmount, int nStatusID, string strRemarks, GIRO gIRO, GIROBatch gIROBatch)
 {
     this._mNettAmount  = mNettAmount;
     this._mGSTAmount   = mGSTAmount;
     this._mTotalAmount = mTotalAmount;
     this._nStatusID    = nStatusID;
     this._strRemarks   = strRemarks;
     this._gIRO         = gIRO;
     this._gIROBatch    = gIROBatch;
 }
示例#2
0
 public GIROBatchEntry( decimal mNettAmount, decimal mGSTAmount, decimal mTotalAmount, int nStatusID, string strRemarks, GIRO gIRO, GIROBatch gIROBatch )
 {
     this._mNettAmount = mNettAmount;
     this._mGSTAmount = mGSTAmount;
     this._mTotalAmount = mTotalAmount;
     this._nStatusID = nStatusID;
     this._strRemarks = strRemarks;
     this._gIRO = gIRO;
     this._gIROBatch = gIROBatch;
 }
示例#3
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;
 }
示例#4
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;
 }
示例#5
0
文件: Member.cs 项目: kimykunjun/test
 public void AddGiro(GIRO giro)
 {
     giro.Member = this;
     _gIROs.Add(giro);
 }
示例#6
0
文件: Branch.cs 项目: kimykunjun/test
 //        protected IList _gIROs = new ArrayList();
 public void AddGiro(GIRO giro)
 {
     giro.Branch = this;
     _gIROs.Add(giro);
 }
示例#7
0
文件: Bank.cs 项目: kimykunjun/test
 public void AddGIRO(GIRO gIRO)
 {
     gIRO.Bank = this;
     _gIROs.Add(gIRO);
 }
示例#8
0
 public void AddGIRO(GIRO gIRO)
 {
     gIRO.Bank = this;
     _gIROs.Add(gIRO);
 }
示例#9
0
 public void AddGIRO(GIRO gIRO)
 {
     gIRO.Package = this;
     _gIROs.Add(gIRO);
 }
示例#10
0
文件: Branch.cs 项目: kimykunjun/test
//		protected IList _gIROs = new ArrayList();
        public void AddGiro(GIRO giro)
        {
            giro.Branch = this;
            _gIROs.Add(giro);
        }
示例#11
0
 public void AddGIRO(GIRO gIRO)
 {
     gIRO.Package = this;
     _gIROs.Add(gIRO);
 }
示例#12
0
文件: Member.cs 项目: kimykunjun/test
 public void AddGiro(GIRO giro)
 {
     giro.Member = this;
     _gIROs.Add(giro);
 }