Example #1
0
        public Time FindTime(DateTime startTime)
        {
            Day day = Community.FindFact(new Day(this, startTime.Date));

            if (day == null)
            {
                return(null);
            }
            return(Community.FindFact(new Time(day, startTime)));
        }
Example #2
0
 public Track FindTrack(string trackName)
 {
     return(Community.FindFact(new Track(this, trackName)));
 }
Example #3
0
 public Speaker FindSpeaker(string speakerName)
 {
     return(Community.FindFact(new Speaker(this, speakerName)));
 }