public async Task <ICollection <StoreData> > getUserStores(string usrname) { ICollection <Store> stores = await marketUsers.getUserStores(usrname); ICollection <StoreData> dataStores = new LinkedList <StoreData>(); foreach (Store s in stores) { dataStores.Add(new StoreData(s)); } return(dataStores); }