Esempio n. 1
0
        private void Init()
        {
            departmentsView = new DepartmentsView();
            stuffView       = new StuffView();

            deptController = new DepartmentController(departmentsView);
            deptController.AttachView(departmentsView);
            deptController.AttachView(stuffView);
            //stuffController = new StuffController();
        }
Esempio n. 2
0
 public DepartmentController(DepartmentsView view)
 {
     Init();
     view.AttachController(this);
 }