public void AddEvent(DateTime date, string title, string location) { var newEvent = new Event(date, title, location); this.comparingTitle.Add(title.ToLower(), newEvent); this.comparingDate.Add(newEvent); Messages.PrintEventAdded(); }
public static void PrintEvent(Event eventToPrint) { if (eventToPrint != null) { Output.Append(eventToPrint + "\n"); } }
public static void PrintEvent(Event eventToPrint) { if (eventToPrint != null) { output.AppendLine(eventToPrint.ToString()); } }
public void AddEvent(DateTime date, string title, string location) { Event newEvent = new Event(date, title, location); byTitle.Add(title.ToLower(), newEvent); byDate.Add(newEvent); Event.EventAdded(); }
public object RangeFrom(Event @event, bool b) { throw new NotImplementedException(); }