public CheckList(string Course, string Name, List <Task> Tasks, Marks Notes, bool hasTimer) { this.inform = new Title(Name, Course); this.Tasks = Tasks; this.Notes = Notes; this.hasTimer = hasTimer; }
public CheckList(Title Inform, List <Task> Tasks, Marks Notes, bool hasTimer) { this.Inform = Inform; this.Tasks = Tasks; this.Notes = Notes; this.hasTimer = hasTimer; }
public CheckList(string Course, string Name, Task Task_One, Marks Notes, bool hasTimer) { this.inform = new Title(Name, Course); this.Tasks = new List <Task>(); this.Tasks.Add(Task_One); this.Notes = Notes; this.hasTimer = hasTimer; }