コード例 #1
0
        public IActionResult CreateNewArtist([FromBody] ArtistInputModel artist)
        {
            var newId = _artistService.CreateNewArtist(artist);

            return(CreatedAtRoute("GetArtistById", new { id = newId }, null));
        }