Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 //        protected IList _classInstances = new ArrayList();
 public void AddClassInstance(ClassInstance classInstance)
 {
     classInstance.Branch = this;
     _classInstances.Add(classInstance);
 }
Example #4
0
 public void AddClassInstance(ClassInstance classInstance)
 {
     classInstance.Class = this;
     _classInstances.Add(classInstance);
 }