/// <summary> /// Closes an agenda point. /// </summary> /// <param name="agendaPoint">The agenda point to close.</param> public void CloseAgendaPoint(AgendaPoint agendaPoint) { // TODO: Add close agenda point code. }
/// <summary> /// Intializes a new instance of the Agenda class /// </summary> /// <param name="id">The id</param> /// <param name="title">The tile of the Agenda</param> /// <param name="first">The first point on the agenda</param> public Agenda(int id, string title, AgendaPoint first) : this(title, first) { this.id = id; }
/// <summary> /// Opens an agenda point /// </summary> /// <param name="agendaPoint">The agenda point to open.</param> public void OpenAgendaPoint(AgendaPoint agendaPoint) { // TODO: Add open agenda point code. }
/// <summary> /// Intializes a new instance of the Agenda class /// </summary> /// <param name="title">The tile of the Agenda</param> /// <param name="first">The first point on the agenda</param> public Agenda(string title, AgendaPoint first) { agendaPoints.Add(first); currentAgendaPoint = first; Title = title; }