public async Task <List <SongDto> > GetAll() { MusicService service = new MusicService(); var allSongs = service.GetAllSongs(); return(allSongs); }