Example #1
0
        private int action = 0; // 0 = No action is ready
                                // 1 = Add action is ready
                                // 2 = Update action is ready
                                // 3 = Delete button is ready
        public ucStaff()
        {
            InitializeComponent();

            staffPresenter     = new StaffPresenter(this);
            staffRolePresenter = new StaffRolePresenter(this);
        }
Example #2
0
 public StaffView()
 {
     InitializeComponent();
     staffPresenter = new StaffPresenter(this);
 }