public IActionResult GetSongNameByName(string name)
 {
     return(Ok(repository.GetSongByName(name)));
 }