public HillsMenuPresenter(IHillsMenuView view, HillsRuntime model)
        {
            this.view  = view;
            this.model = model;

            InitEvents();
            SetInitValues();
        }
        public CalendarEditorEventsPresenter(ICalendarEditorEventsView view, CalendarFactory calendarFactory,
                                             HillsRuntime hills, PresetsRuntime presets)
        {
            this.view            = view;
            this.calendarFactory = calendarFactory;
            this.hills           = hills;
            this.presets         = presets;

            InitEvents();
            SetInitValues();
        }