public void AddEvent(DateTime date, string title, string location, StringBuilder output)
 {
     Event newEvent = new Event(date, title, location);
     byTitle.Add(title.ToLower(), newEvent);
     byDate.Add(newEvent);
     Messages.EventAdded(output);
 }
Exemplo n.º 2
0
 public static void PrintEvent(Event eventToPrint)
 {
     if (eventToPrint != null)
     {
         output.Append(eventToPrint + "\n");
     }
 }
Exemplo n.º 3
0
 public void AddEvent(DateTime date, string title, string location)
 {
     Event newEvent = new Event(date, title, location);
     this.eventsByTitle.Add(title.ToLower(), newEvent);
     this.eventsByDate.Add(newEvent);
     Messages.EventAdded();
 }