public Performer(CommandParser commandParser, StudentSystem studentSystem) { this.commandParser = commandParser; this.studentSystem = studentSystem; }
static void Main(string[] args) { StudentSystem studentSystem = new StudentSystem(); studentSystem.ParseCommands(); }
internal void SetStudent(Student std) { sys = StudentSystem.LoadStudent(std); ReloadForm(); }