You are right.
It is missing the mapping for SaveArtistResource to Artist and SaveMusicResource to Music.
For that you just need to add these two mappings to your MappingProfile.cs
right after CreateMap<ArtistResource, Music>()
:
CreateMap<SaveMusicResource, Music>(); CreateMap<SaveArtistResource, Artist>();
This way AutoMapper will know how to map these models. :)