Example #1
0
        public async Task <ICollection <CustomPokemonModel> > GetCustomSelf()
        {
            var list = await _service.GetAllCustomAsync(Convert.ToInt32(this.User.Identity.Name));

            return(list.Select(x => x.ToModel()).ToList());
        }