Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 //        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;
 }
Esempio n. 3
0
 public InstructorCommission( decimal mCommissionAmount, InstructorType instructorType, InstructorTypeCommission instructorTypeCommission )
 {
     this._mCommissionAmount = mCommissionAmount;
     this._instructorType = instructorType;
     this._instructorTypeCommission = instructorTypeCommission;
 }