コード例 #1
0
        public async Task <IActionResult> DeleteByYouTubeId([FromBody] EditYoutube youTube)
        {
            //Console.WriteLine("youTube.youTubeId");
            //Console.WriteLine(youTube.youTubeId);
            await _songRepository.DeleteByYouTubeId(youTube.youTubeId);

            await _movieRepository.DeleteByYouTubeId(youTube.youTubeId);

            return(Json(youTube.youTubeId));
        }