コード例 #1
0
ファイル: TimeCard.cs プロジェクト: kimykunjun/test
 public TimeCard( DateTime dtDate, DateTime dtTime, Branch branch, Employee employee )
 {
     this._dtDate = dtDate;
     this._dtTime = dtTime;
     this._branch = branch;
     this._employee = employee;
 }
コード例 #2
0
ファイル: ClassInstance.cs プロジェクト: kimykunjun/test
 public ClassInstance( DateTime dtDate, DateTime dtStartTime, DateTime dtEndTime, int nHallNo, bool fFree, bool fPeak, bool fReservation, int nMaxNo, bool fAllowUOBBooking, DateTime dtReplacementIssueDate, DateTime dtReplacementVerifyDate, DateTime dtInstructorLogin, decimal mStandinInstructorFees, bool fCancelled, string strRemarks, decimal mInstructorFees, bool fTraineeClass, decimal mInstructorDeduction, Employee employeenReplacementIssueID, Employee employeenReplacementVerifyID, Employee employeenActualInstructorID, Employee employeenStandinInstructorID, Employee employeenVerifyID, InstructorTypeCommission instructorTypeCommission, Branch branch, Class classd, Employee employeenPermanentInstructorID, Employee employeenReplacementInstructorID,int nClassSchedule)
 {
     this._dtDate = dtDate;
     this._dtStartTime = dtStartTime;
     this._dtEndTime = dtEndTime;
     this._nHallNo = nHallNo;
     this._fFree = fFree;
     this._fPeak = fPeak;
     this._fReservation = fReservation;
     this._nMaxNo = nMaxNo;
     this._fAllowUOBBooking = fAllowUOBBooking;
     this._dtReplacementIssueDate = dtReplacementIssueDate;
     this._dtReplacementVerifyDate = dtReplacementVerifyDate;
     this._dtInstructorLogin = dtInstructorLogin;
     this._mStandinInstructorFees = mStandinInstructorFees;
     this._fCancelled = fCancelled;
     this._strRemarks = strRemarks;
     this._mInstructorFees = mInstructorFees;
     this._fTraineeClass = fTraineeClass;
     this._mInstructorDeduction = mInstructorDeduction;
     this._employeenReplacementIssueID = employeenReplacementIssueID;
     this._employeenReplacementVerifyID = employeenReplacementVerifyID;
     this._employeenActualInstructorID = employeenActualInstructorID;
     this._employeenStandinInstructorID = employeenStandinInstructorID;
     this._employeenVerifyID = employeenVerifyID;
     this._instructorTypeCommission = instructorTypeCommission;
     this._branch = branch;
     this._class = classd;
     this._employeenPermanentInstructorID = employeenPermanentInstructorID;
     this._employeenReplacementInstructorID = employeenReplacementInstructorID;
     this._nClassSchedule=nClassSchedule;
 }
コード例 #3
0
ファイル: SalonUse.cs プロジェクト: kimykunjun/test
 public SalonUse( DateTime dtDate, int nQuantity, Branch branch, Product product, Employee employee )
 {
     this._dtDate = dtDate;
     this._nQuantity = nQuantity;
     this._branch = branch;
     this._product = product;
     this._employee = employee;
 }
コード例 #4
0
ファイル: Locker.cs プロジェクト: kimykunjun/test
 public Locker( int nLockerNo, int nStatusID, string strRemarks, Branch branch, Member member )
 {
     this._nLockerNo = nLockerNo;
     this._nStatusID = nStatusID;
     this._strRemarks = strRemarks;
     this._branch = branch;
     this._member = member;
 }
コード例 #5
0
ファイル: CardRequest.cs プロジェクト: kimykunjun/test
 public CardRequest( DateTime dtLastEditDate, int nStatusID, Branch branch, Employee employee, Member member )
 {
     this._dtLastEditDate = dtLastEditDate;
     this._nStatusID = nStatusID;
     this._branch = branch;
     this._employee = employee;
     this._member = member;
 }
コード例 #6
0
ファイル: BranchTarget.cs プロジェクト: kimykunjun/test
 public BranchTarget( decimal mFitnessPackageTarget, decimal mFitnessProductTarget, decimal mSpaPackageTarget, decimal mSpaProductTarget, decimal mPTPackageTarget, Branch branch )
 {
     this._mFitnessPackageTarget = mFitnessPackageTarget;
     this._mFitnessProductTarget = mFitnessProductTarget;
     this._mSpaPackageTarget = mSpaPackageTarget;
     this._mSpaProductTarget = mSpaProductTarget;
     this._mPTPackageTarget = mPTPackageTarget;
     this._branch = branch;
 }
コード例 #7
0
ファイル: IBT.cs プロジェクト: kimykunjun/test
 public IBT( DateTime dtDate, int nStatusID, DateTime dtLastEditDate, string strRemarks, Branch branchFrom, Branch branchTo, Employee employee )
 {
     this._dtDate = dtDate;
     this._nStatusID = nStatusID;
     this._dtLastEditDate = dtLastEditDate;
     this._strRemarks = strRemarks;
     this._branchFrom = branchFrom;
     this._branchTo = branchTo;
     this._employee = employee;
 }
コード例 #8
0
ファイル: ProductInventory.cs プロジェクト: kimykunjun/test
 public ProductInventory( string strBin, int nQuantity, int nMinQuantity, int nMaxQuantity, int nReorderQuantity, Branch branch, Product product )
 {
     this._strBin = strBin;
     this._nQuantity = nQuantity;
     this._nMinQuantity = nMinQuantity;
     this._nMaxQuantity = nMaxQuantity;
     this._nReorderQuantity = nReorderQuantity;
     this._branch = branch;
     this._product = product;
 }
コード例 #9
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;
 }
コード例 #10
0
ファイル: ServiceSession.cs プロジェクト: kimykunjun/test
 public ServiceSession( DateTime dtDate, DateTime dtStartTime, DateTime dtEndTime, int nStatusID, DateTime dtLastEditDate, bool fUOBBooking, Branch branch, Employee employee, Employee employeenServiceEmployeeID, Member member, MemberPackage memberPackage, Service service )
 {
     this._dtDate = dtDate;
     this._dtStartTime = dtStartTime;
     this._dtEndTime = dtEndTime;
     this._nStatusID = nStatusID;
     this._dtLastEditDate = dtLastEditDate;
     this._fUOBBooking = fUOBBooking;
     this._branch = branch;
     this._employee = employee;
     this._employeenServiceEmployeeID = employeenServiceEmployeeID;
     this._member = member;
     this._memberPackage = memberPackage;
     this._service = service;
 }
コード例 #11
0
ファイル: Shift.cs プロジェクト: kimykunjun/test
 public Shift(DateTime dtDate, int nTerminalID, int nShiftID, DateTime dtOpenTime, DateTime dtCloseTime, decimal mOpeningFloat, decimal mClosingFloat, string strRemarks, Branch branch, Employee employeenOpenShiftStaffID, Employee employeenCloseShiftStaffID, Employee employeenVerifyStaffID )
 {
     this._dtDate = dtDate;
     this._nTerminalID = nTerminalID;
     this._nShiftID = nShiftID;
     this._dtOpenTime = dtOpenTime;
     this._dtCloseTime = dtCloseTime;
     this._mOpeningFloat = mOpeningFloat;
     this._mClosingFloat = mClosingFloat;
     this._strRemarks = strRemarks;
     this._branch = branch;
     this._employeenOpenShiftStaffID = employeenOpenShiftStaffID;
     this._employeenCloseShiftStaffID = employeenCloseShiftStaffID;
     this._employeenVerifyStaffID = employeenVerifyStaffID;
 }
コード例 #12
0
ファイル: Case.cs プロジェクト: kimykunjun/test
 public Case( DateTime dtDate, DateTime dtLastEditDate, int nStatusID, string strSubject, string strDetails, Branch branch, CaseCategory caseCategory, CaseType caseType, Department department, Department departmentnDepartmentAssignedID, Employee employeenSubmittedByID, Employee employee, Member member )
 {
     this._dtDate = dtDate;
     this._dtLastEditDate = dtLastEditDate;
     this._nStatusID = nStatusID;
     this._strSubject = strSubject;
     this._strDetails = strDetails;
     this._branch = branch;
     this._caseCategory = caseCategory;
     this._caseType = caseType;
     this._department = department;
     this._departmentnDepartmentAssignedID = departmentnDepartmentAssignedID;
     this._employeenSubmittedByID = employeenSubmittedByID;
     this._employee = employee;
     this._member = member;
 }
コード例 #13
0
ファイル: ClassAttendance.cs プロジェクト: kimykunjun/test
 public ClassAttendance( DateTime dtDate, DateTime dtStartTime, DateTime dtEndTime, int nTypeID, int nStatusID, DateTime dtLastEditDate, bool fUOBBooking, bool fRefunded, Branch branch, ClassInstance classInstance, Employee employee, Member member, MemberPackage memberPackage )
 {
     this._dtDate = dtDate;
     this._dtStartTime = dtStartTime;
     this._dtEndTime = dtEndTime;
     this._nTypeID = nTypeID;
     this._nStatusID = nStatusID;
     this._dtLastEditDate = dtLastEditDate;
     this._fUOBBooking = fUOBBooking;
     this._fRefunded = fRefunded;
     this._branch = branch;
     this._classInstance = classInstance;
     this._employee = employee;
     this._member = member;
     this._memberPackage = memberPackage;
 }
コード例 #14
0
ファイル: ClassSchedule.cs プロジェクト: kimykunjun/test
 //        public ClassSchedule( ClassScheduleId Id,DateTime dtEndTime, bool fFree, bool fPeak, bool fReservation, int nMaxNo, bool fAllowUOBBooking, Branch branch, Class classd, Employee employeenInstructorID, InstructorTypeCommission instructorTypeCommission )
 public ClassSchedule( int nClassSchedule,int nHallNo,int nDay, DateTime dtStartTime, DateTime dtEndTime, bool fFree, bool fPeak, bool fReservation, int nMaxNo, bool fAllowUOBBooking, Branch branch, Class classd, Employee employeenInstructorID, InstructorTypeCommission instructorTypeCommission )
 {
     this._nClassScheduleID=nClassSchedule;
     this._nHallNo = nHallNo;
     this._nDay = nDay;
     this._dtStartTime = dtStartTime;
     this._dtEndTime = dtEndTime;
     this._fFree = fFree;
     this._fPeak = fPeak;
     this._fReservation = fReservation;
     this._nMaxNo = nMaxNo;
     this._fAllowUOBBooking = fAllowUOBBooking;
     this._branch = branch;
     this._class = classd;
     this._employeenInstructorID = employeenInstructorID;
     this._instructorTypeCommission = instructorTypeCommission;
 }
コード例 #15
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;
 }
コード例 #16
0
ファイル: Receipt.cs プロジェクト: kimykunjun/test
 public Receipt( DateTime dtDate, int nShiftID, int nTerminalID, decimal mNettAmount, decimal mGSTAmount, decimal mTotalAmount, decimal mVoucherAmount, bool fVoid, string strReferenceNo, string strParentReceiptNo, string strChildReceiptNo, Branch branch, Category category, Employee employeenSalespersonID, Employee employeenCashierID, Employee employeenTherapistID, Member member, Promotion promotionstrDiscountCode, Promotion promotionstrFreebieCode, Reward reward, Tax tax )
 {
     this._dtDate = dtDate;
     this._nShiftID = nShiftID;
     this._nTerminalID = nTerminalID;
     this._mNettAmount = mNettAmount;
     this._mGSTAmount = mGSTAmount;
     this._mTotalAmount = mTotalAmount;
     this._mVoucherAmount = mVoucherAmount;
     this._fVoid = fVoid;
     this._strReferenceNo = strReferenceNo;
     this._strParentReceiptNo = strParentReceiptNo;
     this._strChildReceiptNo = strChildReceiptNo;
     this._branch = branch;
     this._category = category;
     this._employeenSalespersonID = employeenSalespersonID;
     this._employeenCashierID = employeenCashierID;
     this._employeenTherapistID = employeenTherapistID;
     this._member = member;
     this._promotionstrDiscountCode = promotionstrDiscountCode;
     this._promotionstrFreebieCode = promotionstrFreebieCode;
     this._reward = reward;
     this._tax = tax;
 }
コード例 #17
0
ファイル: PromotionBranch.cs プロジェクト: kimykunjun/test
 public PromotionBranch(Branch branch, Promotion promotion)
 {
     this._branch = branch;
     this._promotion = promotion;
 }
コード例 #18
0
ファイル: Employee.cs プロジェクト: kimykunjun/test
 public Employee( string strEmployeeName,string strPassword, string strContactNo, decimal mFitnessPackageTarget, decimal mFitnessProductTarget, decimal mSpaPackageTarget, decimal mSpaProductTarget, decimal mPTPackageTarget, int nServiceCommLevel, Branch branch, Department department, InstructorType instructorType, JobPosition jobPosition, RightsLevel rightsLevel )
 {
     this._strEmployeeName = strEmployeeName;
     this._mFitnessPackageTarget = mFitnessPackageTarget;
     this._mFitnessProductTarget = mFitnessProductTarget;
     this._mSpaPackageTarget = mSpaPackageTarget;
     this._mSpaProductTarget = mSpaProductTarget;
     this._mPTPackageTarget = mPTPackageTarget;
     this._nServiceCommLevel = nServiceCommLevel;
     this._branch = branch;
     this._department = department;
     this._instructorType = instructorType;
     this._jobPosition = jobPosition;
     this._rightsLevel = rightsLevel;
     this._strPassword = strPassword;
     this._strContactNo = strContactNo;
 }
コード例 #19
0
ファイル: TerminalUser.cs プロジェクト: kimykunjun/test
 public TerminalUser( int nServiceID, int nTerminalID, Branch branch )
 {
     this._nServiceID = nServiceID;
     this._nTerminalID = nTerminalID;
     this._branch = branch;
 }
コード例 #20
0
ファイル: PackageBranch.cs プロジェクト: kimykunjun/test
 public PackageBranch(Branch branch, Package packageCode)
 {
     this._branch = branch;
     this._packageCode = packageCode;
 }
コード例 #21
0
ファイル: RewardsBranch.cs プロジェクト: kimykunjun/test
 public RewardsBranch(Branch branch, Reward rewards)
 {
     this._branch = branch;
     this._rewards = rewards;
 }
コード例 #22
0
ファイル: PackageBranch.cs プロジェクト: kimykunjun/test
 public PackageBranch(Branch branch, Package packageCode)
 {
     this._branch      = branch;
     this._packageCode = packageCode;
 }
コード例 #23
0
ファイル: Roster.cs プロジェクト: kimykunjun/test
 public Roster(DateTime dtDate, DateTime dtStartTime, DateTime dtEndTime, string strRemarks, Branch branch, Employee employee)
 {
     this._dtDate      = dtDate;
     this._dtStartTime = dtStartTime;
     this._dtEndTime   = dtEndTime;
     this._strRemarks  = strRemarks;
     this._branch      = branch;
     this._employee    = employee;
 }