Esempio n. 1
0
        public async Task <ActionResult> Delete(int albumId, int songId)
        {
            await _songService.DeleteSongAsync(albumId, songId);

            return(NoContent());
        }