//
        // GET: /Search/SearchFromUrl
        public ActionResult SearchFromUrl(String cityLabel, String categoryLabel)
        {
            IList <CategoryItemModel> categoryGroup = _categoryServices.GetAllCategoriesOfAGroupFromUrlPart(categoryLabel);

            if (categoryGroup.Count == 0)
            {
                return(View("CategoryDoesNotExists"));
            }

            AdSearchResultModel result = _searchServices.SearchAdsFromUrl(cityLabel, categoryLabel);

            ViewBag.Categories = categoryGroup.Select(x => new SelectListItem {
                Text = x.Label, Value = x.Id.ToString()
            });

            return(View("Index", result));
        }