private static IEnumerable <string> GetLocationsDescription(JobProfileTasksDataSegmentModel segmentModel)
 {
     return(segmentModel.Locations?.Select(location => location.Description));
 }
 private static IEnumerable <string> GetUniformsDescription(JobProfileTasksDataSegmentModel segmentModel)
 {
     return(segmentModel.Uniforms?.Select(uniform => uniform.Description));
 }
 private static IEnumerable <string> GetEnvironmentsDescription(JobProfileTasksDataSegmentModel segmentModel)
 {
     return(segmentModel.Environments?.Select(environment => environment.Description));
 }