Пример #1
0
        public ActionResult NationalConstructions(int countryID)
        {
            var country       = countryRepository.GetById(countryID);
            var constructions = constructionRepository.GetNationalConstructions(country.ID);
            var vm            = new NationalConstructionsViewModel(country, constructions, constructionService);

            return(View(vm));
        }