コード例 #1
0
 public Performer(CommandParser commandParser, StudentSystem studentSystem)
 {
     this.commandParser = commandParser;
     this.studentSystem = studentSystem;
 }
コード例 #2
0
ファイル: StartUp.cs プロジェクト: kkereziev/SoftUni_OOP
        static void Main(string[] args)
        {
            StudentSystem studentSystem = new StudentSystem();

            studentSystem.ParseCommands();
        }
コード例 #3
0
 internal void SetStudent(Student std)
 {
     sys = StudentSystem.LoadStudent(std);
     ReloadForm();
 }