예제 #1
0
파일: Member.cs 프로젝트: kimykunjun/test
 public Member( int nMembershipNo, string strMemberName, string strCardName, string strNRICFIN, bool fSingaporean, bool fMember, bool fAirCrew, DateTime dtDOB, string strAddress1, string strAddress2, string strPostalCode, string strHomeNo, string strOfficeNo, string strMobileNo, string strPagerNo, bool fSMS, bool fEmail, bool fPostalMail, string strEmail, string strAltEmail, int nMediaSourceID, string strMediaSource, string strCompany, string strOccupation, string strRemarks, DateTime dtSignupDate, string strCreditCardNo, string strIntroducerMembershipID, int nCardStatusID, bool fLockerDeposit, int nStatus, bool fGiroFailed, bool fBounceCheck, Branch branchstrCardBranchCode, Employee employeenSignupID, LoyaltyStatus loyaltyStatus )
 {
     //this._strBranchCode = strBranchCode;
     this._nMembershipNo = nMembershipNo;
     this._strMemberName = strMemberName;
     this._strCardName = strCardName;
     this._strNRICFIN = strNRICFIN;
     this._fSingaporean = fSingaporean;
     this._fMember = fMember;
     this._fAirCrew = fAirCrew;
     this._dtDOB = dtDOB;
     this._strAddress1 = strAddress1;
     this._strAddress2 = strAddress2;
     this._strPostalCode = strPostalCode;
     this._strHomeNo = strHomeNo;
     this._strOfficeNo = strOfficeNo;
     this._strMobileNo = strMobileNo;
     this._strPagerNo = strPagerNo;
     this._fSMS = fSMS;
     this._fEmail = fEmail;
     this._fPostalMail = fPostalMail;
     this._strEmail = strEmail;
     this._strAltEmail = strAltEmail;
     this._nMediaSourceID = nMediaSourceID;
     this._strMediaSource = strMediaSource;
     this._strCompany = strCompany;
     this._strOccupation = strOccupation;
     this._strRemarks = strRemarks;
     this._dtSignupDate = dtSignupDate;
     this._strCreditCardNo = strCreditCardNo;
     this._strIntroducerMembershipID = strIntroducerMembershipID;
     this._nCardStatusID = nCardStatusID;
     this._fLockerDeposit = fLockerDeposit;
     this._nStatus = nStatus;
     this._fGiroFailed = fGiroFailed;
     this._fBounceCheck = fBounceCheck;
     this._branchstrCardBranchCode = branchstrCardBranchCode;
     this._employeenSignupID = employeenSignupID;
     this._loyaltyStatus = loyaltyStatus;
 }
예제 #2
0
파일: Member.cs 프로젝트: kimykunjun/test
 public Member(int nMembershipNo, string strMemberName, string strCardName, string strNRICFIN, bool fSingaporean, bool fMember, bool fAirCrew, DateTime dtDOB, string strAddress1, string strAddress2, string strPostalCode, string strHomeNo, string strOfficeNo, string strMobileNo, string strPagerNo, bool fSMS, bool fEmail, bool fPostalMail, string strEmail, string strAltEmail, int nMediaSourceID, string strMediaSource, string strCompany, string strOccupation, string strRemarks, DateTime dtSignupDate, string strCreditCardNo, string strIntroducerMembershipID, int nCardStatusID, bool fLockerDeposit, int nStatus, bool fGiroFailed, bool fBounceCheck, Branch branchstrCardBranchCode, Employee employeenSignupID, LoyaltyStatus loyaltyStatus)
 {
     //this._strBranchCode = strBranchCode;
     this._nMembershipNo             = nMembershipNo;
     this._strMemberName             = strMemberName;
     this._strCardName               = strCardName;
     this._strNRICFIN                = strNRICFIN;
     this._fSingaporean              = fSingaporean;
     this._fMember                   = fMember;
     this._fAirCrew                  = fAirCrew;
     this._dtDOB                     = dtDOB;
     this._strAddress1               = strAddress1;
     this._strAddress2               = strAddress2;
     this._strPostalCode             = strPostalCode;
     this._strHomeNo                 = strHomeNo;
     this._strOfficeNo               = strOfficeNo;
     this._strMobileNo               = strMobileNo;
     this._strPagerNo                = strPagerNo;
     this._fSMS                      = fSMS;
     this._fEmail                    = fEmail;
     this._fPostalMail               = fPostalMail;
     this._strEmail                  = strEmail;
     this._strAltEmail               = strAltEmail;
     this._nMediaSourceID            = nMediaSourceID;
     this._strMediaSource            = strMediaSource;
     this._strCompany                = strCompany;
     this._strOccupation             = strOccupation;
     this._strRemarks                = strRemarks;
     this._dtSignupDate              = dtSignupDate;
     this._strCreditCardNo           = strCreditCardNo;
     this._strIntroducerMembershipID = strIntroducerMembershipID;
     this._nCardStatusID             = nCardStatusID;
     this._fLockerDeposit            = fLockerDeposit;
     this._nStatus                   = nStatus;
     this._fGiroFailed               = fGiroFailed;
     this._fBounceCheck              = fBounceCheck;
     this._branchstrCardBranchCode   = branchstrCardBranchCode;
     this._employeenSignupID         = employeenSignupID;
     this._loyaltyStatus             = loyaltyStatus;
 }
예제 #3
0
 public void AddLoyaltyStatus(LoyaltyStatus loyaltyStatus)
 {
     loyaltyStatus.DiscountCategory = this;
     _loyaltyStatuses.Add(loyaltyStatus);
 }