21
Retail
Food and beverage products
Canteen / catering
Logistics / warehouse
Adult education
Other
Land transport
Canteen / catering
Electronical engineer
Food and beverage products
Accounting / controlling
Other
Other
Canteen / catering
Other
Other
Car mechanic
Logistics / warehouse
Unskilled labor
Canteen / catering
Logistics / warehouse
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); }