Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 public void AddJobPosition(JobPosition jobPosition)
 {
     jobPosition.DiscountCategory = this;
     _jobPositions.Add(jobPosition);
 }