Exemplo n.º 1
0
 public ScheduledProgrammeWrapper(string date, Time beginTime, string title, String description) : base(date, beginTime)
 {
     this.Programme = new ProgrammeJson(title, description);
 }
Exemplo n.º 2
0
 public ScheduledProgrammeWrapper(int weekDay, string title, String description) : base(weekDay)
 {
     this.Programme = new ProgrammeJson(title, description);
 }
Exemplo n.º 3
0
 public ScheduledProgrammeWrapper(Time beginTime, string title) : base(beginTime)
 {
     this.Programme = new ProgrammeJson(title);
 }
Exemplo n.º 4
0
 public ScheduledProgrammeWrapper(int weekDay, Time beginTime, string title) : base(weekDay, beginTime)
 {
     this.Programme = new ProgrammeJson(title);
 }
Exemplo n.º 5
0
 public ScheduledProgrammeWrapper(string date, string title) : base(date)
 {
     this.Programme = new ProgrammeJson(title);
 }