public NextEventInfoPresenter(INextEventInfoView view, TournamentMenuData model)
 {
     this.model = model;
     this.view  = view;
     InitEvents();
     SetInitValues();
 }
        public CalendarEventInfoPresenter(ICalendarEventInfoView view, TournamentMenuData model)
        {
            this.view  = view;
            this.model = model;

            InitEvents();
        }
        public EventsSelectionPresenter(IEventsSelectionView view, TournamentMenuData model)
        {
            this.model = model;
            this.view  = view;

            InitEvents();
            SetInitValues();
        }
Пример #4
0
 public TeamsSelectionPresenter(ITeamsSelectionView view, TournamentMenuData model, ITournamentMenuController menuController)
 {
     this.view           = view;
     this.model          = model;
     this.menuController = menuController;
     InitEvents();
     SetInitValues();
 }
        public ClassificationsHierarchyPresenter(IClassificationsHierarchyView view, TournamentMenuData model)
        {
            this.view  = view;
            this.model = model;

            InitEvents();
            SetInitValues();
        }