public virtual bool Equals(AuditKey other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other.SessionId.Equals(SessionId) && other.Timestamp == Timestamp && other.TestInstanceId == TestInstanceId; }
public virtual bool Equals(AuditKey other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(other.SessionId.Equals(SessionId) && other.Timestamp == Timestamp && other.TestInstanceId == TestInstanceId); }
public TestInstanceAudit(AuditKey id) { Id = id; }