private void InitializeStoresList() { var storesService = new StoresService(ConfigurationManager.AppSettings["ApiUrl"]); var stores = storesService.GetStores(); StoresDropdown.ItemsSource = stores; }
public async Task <IActionResult> Index() { return(View(await _storesService.GetStores())); }
public IEnumerable <Store> Get() { return(storesService.GetStores()); }