Example #1
0
        public Task <IEnumerable <ItemGem> > GetGemsAsync(IAuthenticationScope authenticationScope)
        {
            var mapper = new ItemGemMapper();

            return(GetItems(authenticationScope, mapper, "item-type/gem"));
        }
Example #2
0
        public Task <ItemGem> GetGemAsync(IAuthenticationScope authenticationScope, ItemId itemId)
        {
            var mapper = new ItemGemMapper();

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