Esempio n. 1
0
        public Task <IEnumerable <ItemLegendaryPotion> > GetLegendaryPotionsAsync(IAuthenticationScope authenticationScope)
        {
            var mapper = new ItemLegendaryPotionMapper();

            return(GetItems(authenticationScope, mapper, "item-type/healthpotion"));
        }
Esempio n. 2
0
        public Task <ItemLegendaryPotion> GetLegendaryPotionAsync(IAuthenticationScope authenticationScope, ItemId itemId)
        {
            var mapper = new ItemLegendaryPotionMapper();

            return(GetItem(authenticationScope, mapper, itemId));
        }