Ejemplo n.º 1
0
 public Performer(CommandParser commandParser, StudentSystem studentSystem)
 {
     this.commandParser = commandParser;
     this.studentSystem = studentSystem;
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            StudentSystem studentSystem = new StudentSystem();

            studentSystem.ParseCommands();
        }
Ejemplo n.º 3
0
 internal void SetStudent(Student std)
 {
     sys = StudentSystem.LoadStudent(std);
     ReloadForm();
 }