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