Exemplo n.º 1
0
 public bool GreaterThan(EstimatedTime estimatedTime) =>
 EstimationInSeconds > estimatedTime.EstimationInSeconds;
Exemplo n.º 2
0
 public bool GreaterThanOrEqual(EstimatedTime estimatedTime) =>
 EstimationInSeconds >= estimatedTime.EstimationInSeconds;
Exemplo n.º 3
0
 public bool LessThan(EstimatedTime estimatedTime) =>
 EstimationInSeconds < estimatedTime.EstimationInSeconds;
Exemplo n.º 4
0
 public bool LessThanOrEqual(EstimatedTime estimatedTime) =>
 EstimationInSeconds <= estimatedTime.EstimationInSeconds;