Example #1
0
        public async Task <int> CountOfMusicVideos()
        {
            var getAllMusicVideos = await musicVideoCrud.GetAllMusicVideos();

            return(getAllMusicVideos.Count);
        }
Example #2
0
        public async Task <IActionResult> GetAllMusicVideos()
        {
            var getAllMusicVideos = await musicVideoCrud.GetAllMusicVideos();

            return(Ok(getAllMusicVideos));
        }