Ejemplo n.º 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)));
        }
Ejemplo n.º 2
0
 public Track FindTrack(string trackName)
 {
     return(Community.FindFact(new Track(this, trackName)));
 }
Ejemplo n.º 3
0
 public Speaker FindSpeaker(string speakerName)
 {
     return(Community.FindFact(new Speaker(this, speakerName)));
 }