Exemplo n.º 1
0
 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;
 }
Exemplo n.º 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;
 }