Example #1
0
        public async Task <CustomPokemonModel> AddCustom([FromBody] CustomPokemonModel model)
        {
            var x = await _service.AddCustom(Convert.ToInt32(this.User.Identity.Name), model);

            return(x.ToModel());
        }