Exemplo n.º 1
0
 public void OpenFundInitialisationWindow()
 {
     if (_currentFund == null)
     {
         MessageBox.Show("You need to create a fund first", "Information");
     }
     else
     {
         _windowFactory.CreateFundInitialisationWindow(_currentFund);
         SelectFundCommand.Execute(_currentFund.Symbol);
     }
 }