Пример #1
0
 /// <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.
 }
Пример #2
0
 /// <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;
 }
Пример #3
0
 /// <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.
 }
Пример #4
0
 /// <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;
 }