22
Logistics / warehouse
Cleaning personell
Logistics / warehouse
Economy / finance
Land transport
Logistics / warehouse
Doctor / dentist
Payroll
Electronical engineer
Land transport
HR / recruitment
Doctor / dentist
Food and beverage products
Cleaning personell
Construction
Transport related services
Other
Archive / document management
Logistics / warehouse
Electrician
Logistics / warehouse
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); }