public IActionResult CreateNewArtist([FromBody] ArtistInputModel artist) { var newId = _artistService.CreateNewArtist(artist); return(CreatedAtRoute("GetArtistById", new { id = newId }, null)); }