public static Artist checkDatabaseForArtist(String artistName, ArtistRepository repository) {
   return repository.findByArtistName(artistName);
 }