public async Task <ActionResult <IEnumerable <Music> > > GetAllMusic()
        {
            try
            {
                var musics = await _musicService.GetAllMusicsWithArtistAsync();

                return(Ok(musics));
            }
            catch (Exception ex)
            {
                return(BadRequest(ex.Message));
            }
        }