Exemplo n.º 1
0
 private void ShowForm(IStatisticsView formToShow)
 {
     if (_currentForm != null)
     {
         _currentForm.Hide();
     }
     _currentForm = formToShow;
     _currentForm.SetStatistics(_statistics);
     _currentForm.Show();
 }