Esempio n. 1
0
 public ApproximateDateSpan(ApproximateDateTime startDate, ApproximateDateTime endDate)
 {
     StartDate = startDate;
     EndDate   = endDate;
 }
Esempio n. 2
0
 public Absolute(ApproximateDateTime date) : base(EventRelationshipType.Absolute)
 {
     AbsoluteDateTime = date;
 }
Esempio n. 3
0
 public static Event AbsoluteEvent(string name, ApproximateDateTime timelineDateTime)
 {
     return(new Event(name, new EventRelationship.Absolute(timelineDateTime)));
 }