Esempio n. 1
0
        public void CopyProperties(IIdentifiable other)
        {
            other.CheckArgument(nameof(other));

            Id        = other.Id;
            Timestamp = other.Timestamp;
        }
Esempio n. 2
0
        public void CopyProperties(IIdentifiable other)
        {
            other.CheckArgument(nameof(other));

            (Id, Timestamp) = (other.Id, other.Timestamp);
        }