public override int GetHashCode()
 {
     return(DurationSec.GetHashCode() + StartDateUtc.GetHashCode() + UserCount.GetHashCode());
 }
Esempio n. 2
0
 /// <summary>
 /// Get the final date of the test.
 /// </summary>
 /// <returns>The final date time.</returns>
 public DateTime GetEndDateUtc()
 {
     return(StartDateUtc.AddSeconds(DurationSec));
 }