Example #1
0
        public void CopyProperties(IAlbum other)
        {
            other.CheckArgument(nameof(other));

            Id         = other.Id;
            RowVersion = other.RowVersion;
            ArtistId   = other.ArtistId;
            Title      = other.Title;
        }