23
Cleaning personell
Transport related services
Logistics / warehouse
Logistics / warehouse
Logistics / warehouse
Customer service
Office assistant / secretary
Adult education
Logistics / warehouse
Other
Other
Procurement
Cleaning personell
Logistics / warehouse
Economy / finance
Land transport
Logistics / warehouse
Doctor / dentist
Payroll
Land transport
HR / recruitment
Doctor / dentist
Accounting / controlling
IPage containerPage = GetFirstPageWithItemType(JobContainerKey, areaId); if (containerPage != null) { IEnumerable pagesByParentId = PageService.GetPagesByParentID(containerPage.Id); if (pagesByParentId != null) { foreach (IPage page in pagesByParentId) { if (page.IsDeleted) { continue; } IJobViewModel jobViewModel = new JksJobPage(page); viewModels.Add(jobViewModel); if (jobViewModel.IsActive && page.Published) { publishedViewModels.Add(jobViewModel); } } viewModels = SortViewModels(viewModels); publishedViewModels = SortViewModels(publishedViewModels); }