Ejemplo n.º 1
0
        public ActionResult <ArtistDto> FindArtistByName(string name)
        {
            ArtistModel foundArtist = _service.FindArtistByName(name);

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