public MainWindow()
        {
            InitializeComponent();

            DataContext = this;

            _startMatchEvents             = new StartMatchEvents();
            _startMatchEvents.StartMatch += _startMatchEvents_StartMatch;
            _reminders = new Reminders(_startMatchEvents);

            ChangeEnablesButtonTimer(false);
        }
Пример #2
0
 internal Reminders(StartMatchEvents startMatchEvents)
 {
     _startMatchEvents = startMatchEvents;
 }