public SearchEmployeeInAndOutInfoPresenter(IPersonalInAndOutInfoView infoView, Account loginUser)
            : base(loginUser)
        {
            _InfoView = infoView;

            _ListPresenter = new SearchEmployeeInAndOutListPresenter(_InfoView.InAndOutListView, loginUser);
            SwitchLittleViewPresenter();
            AttachViewEvent();
        }
예제 #2
0
        public PersonalInAndOutInfoPresenter(IPersonalInAndOutInfoView infoView, string employeeId, Account loginUser)
            : base(loginUser)
        {
            _InfoView = infoView;

            _InfoView.InAndOutView.EmployeeId = employeeId;
            _ListPresenter = new PersonalInAndOutListPresenter(_InfoView.InAndOutListView, loginUser);
            _InfoView.InAndOutListView.EmployeeId = employeeId;
            SwitchLittleViewPresenter();
            AttachViewEvent();
        }