public ContractEntity(CurrentJobDetailsEntity cjde, EmployeeView empl)
        {
            this.EndDate = cjde.EndDate;
            this.FunctionalLevelId = cjde.FunctionalLevelId;
            this.FunctionalLevelTitle = cjde.FunctionalLevelTitle;
            this.GradeEntry = cjde.GradeEntry;
            this.GradeId = cjde.GradeId;
            this.GradeKCB = cjde.GradeKCB;
            this.GrossValue = cjde.GrossValue;
            this.JobCode = cjde.JobCode;
            this.JobTitle = cjde.JobTitle;
            this.OrganizationalUnitId = cjde.OrganizationalUnitId;
            this.OrganizationalUnitTitle = cjde.OrganizationalUnitTitle;
            this.StartDate = cjde.StartDate;
            this.Status = StatusEnum.Active;
            this.StepEntry = cjde.StepEntry;
            this.StepId = cjde.StepId;
            this.Type = cjde.IsWithoutEndDate;

            this.EmployeeId = empl.Id;
            this.EmployeeFirstname = empl.Firstname;
            this.EmployeeLastname = empl.Lastname;
            this.EmployeeNo = empl.EmployeeNo;
            this.EmployeePersonalNumber = empl.PersonalNumber;
        }
Exemple #2
0
        public ContractEntity(CurrentJobDetailsEntity cjde, EmployeeView empl)
        {
            this.EndDate                 = cjde.EndDate;
            this.FunctionalLevelId       = cjde.FunctionalLevelId;
            this.FunctionalLevelTitle    = cjde.FunctionalLevelTitle;
            this.GradeEntry              = cjde.GradeEntry;
            this.GradeId                 = cjde.GradeId;
            this.GradeKCB                = cjde.GradeKCB;
            this.GrossValue              = cjde.GrossValue;
            this.JobCode                 = cjde.JobCode;
            this.JobTitle                = cjde.JobTitle;
            this.OrganizationalUnitId    = cjde.OrganizationalUnitId;
            this.OrganizationalUnitTitle = cjde.OrganizationalUnitTitle;
            this.StartDate               = cjde.StartDate;
            this.Status    = StatusEnum.Active;
            this.StepEntry = cjde.StepEntry;
            this.StepId    = cjde.StepId;
            this.Type      = cjde.IsWithoutEndDate;

            this.EmployeeId             = empl.Id;
            this.EmployeeFirstname      = empl.Firstname;
            this.EmployeeLastname       = empl.Lastname;
            this.EmployeeNo             = empl.EmployeeNo;
            this.EmployeePersonalNumber = empl.PersonalNumber;
        }
Exemple #3
0
 public AmandamentEntity(CurrentJobDetailsEntity cjde)
 {
     this.ContractNumber          = cjde.ContractNumber;
     this.EndDate                 = cjde.EndDate;
     this.FunctionalLevelId       = cjde.FunctionalLevelId;
     this.FunctionalLevelTitle    = cjde.FunctionalLevelTitle;
     this.GradeEntry              = cjde.GradeEntry;
     this.GradeId                 = cjde.GradeId;
     this.GradeKCB                = cjde.GradeKCB;
     this.GrossValue              = cjde.GrossValue;
     this.JobCode                 = cjde.JobCode;
     this.JobTitle                = cjde.JobTitle;
     this.OrganizationalUnitId    = cjde.OrganizationalUnitId;
     this.OrganizationalUnitTitle = cjde.OrganizationalUnitTitle;
     this.StartDate               = cjde.StartDate;
     this.Status    = StatusEnum.Active;
     this.StepEntry = cjde.StepEntry;
     this.StepId    = cjde.StepId;
     this.Type      = cjde.IsWithoutEndDate;
 }
 public AmandamentEntity(CurrentJobDetailsEntity cjde)
 {
     this.ContractNumber = cjde.ContractNumber;
     this.EndDate = cjde.EndDate;
     this.FunctionalLevelId = cjde.FunctionalLevelId;
     this.FunctionalLevelTitle = cjde.FunctionalLevelTitle;
     this.GradeEntry = cjde.GradeEntry;
     this.GradeId = cjde.GradeId;
     this.GradeKCB = cjde.GradeKCB;
     this.GrossValue = cjde.GrossValue;
     this.JobCode = cjde.JobCode;
     this.JobTitle = cjde.JobTitle;
     this.OrganizationalUnitId = cjde.OrganizationalUnitId;
     this.OrganizationalUnitTitle = cjde.OrganizationalUnitTitle;
     this.StartDate = cjde.StartDate;
     this.Status = StatusEnum.Active;
     this.StepEntry = cjde.StepEntry;
     this.StepId = cjde.StepId;
     this.Type = cjde.IsWithoutEndDate;
 }