public PrivateSchool() { Console.WriteLine("Welcome to private school PC Education\nLet's get the data for this semester"); syntheticData = CommandPromtUtilities.SyntheticData(); this._courses = Initialisation.SetUpCourses(); this._trainers = Initialisation.SetUpTrainers(); this._courseclasses = Initialisation.SetUpClasses(this._courses, this._trainers); Console.WriteLine("\nSemester was organised succesfully!\n"); CommandPromtOutput.OutputMenu(this._courses, this._trainers, this._courseclasses); }