Beispiel #1
0
 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;
 }
Beispiel #2
0
 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);
 }
Beispiel #3
0
 public TestInstanceAudit(AuditKey id)
 {
     Id = id;
 }