public ActionResult <ArtistDto> FindArtistByName(string name)
        {
            ArtistModel foundArtist = _service.FindArtistByName(name);

            return(Ok(_mapper.Map <ArtistDto>(foundArtist)));
        }