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