Пример #1
0
        public ActionResult CountrySettings()
        {
            var countrySettingDto = _countrySettingsService.GetItems();
            var countrSettings    = Mapper.Map <IEnumerable <CountrySettingDTO>, IEnumerable <CountrySettingViewModel> >(countrySettingDto);

            return(View(countrSettings.ToList()));
        }