Example #1
0
 public Milestone(LocalTime time) : this(time.UtcTime)
 {
 }
Example #2
0
 public bool IsActiveAt(LocalTime timestamp)
 {
     return(IsActiveAt(timestamp.UtcTime));
 }
Example #3
0
 public Period(LocalTime @from, LocalTime to)
 {
     From = from;
     To   = to;
 }
Example #4
0
 public void MarkCompleted(LocalTime completedTime)
 {
     To = completedTime;
 }
Example #5
0
 public Period(LocalTime @from)
 {
     From = from;
 }