예제 #1
0
        public void CopyProperties(IArtist other)
        {
            other.CheckArgument(nameof(other));

            Id         = other.Id;
            RowVersion = other.RowVersion;
            Name       = other.Name;
        }