public void CopyProperties(IIdentifiable other) { other.CheckArgument(nameof(other)); Id = other.Id; Timestamp = other.Timestamp; }
public void CopyProperties(IIdentifiable other) { other.CheckArgument(nameof(other)); (Id, Timestamp) = (other.Id, other.Timestamp); }