public StudentManagementSystem(DepartmentView departmentView, StudentView studentView)
 {
     this.departmentView = departmentView;
     this.studentView = studentView;
     this.gotoWhen = new Dictionary<int, Action>
                    {
                        { 1, this.ListDepartments },
                        { 2, this.ListStudents },
                        { 3, this.ExitSystem }
                    };
 }
Ejemplo n.º 2
0
 public StudentManagementSystem(DepartmentView departmentView, StudentView studentView)
 {
     this.departmentView = departmentView;
     this.studentView    = studentView;
     this.gotoWhen       = new Dictionary <int, Action>
     {
         { 1, this.ListDepartments },
         { 2, this.ListStudents },
         { 3, this.ExitSystem }
     };
 }