Пример #1
0
        public IActionResult CreateNewSong([FromBody] SongInputModel song)
        {
            var newId = _songService.CreateNewSong(song);

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