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 } }; }
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 } }; }