Exemplo n.º 1
0
        public void CreateNewInvestorWindow()
        {
            Window view = new InvestorManagerWindow();
            ViewModelWindowBase viewModel = new InvestorManagerWindowViewModel(_investorService);

            view = ApplyWindowAttributes(view, viewModel);
            view.ShowDialog();
        }
Exemplo n.º 2
0
 public AddInvestorCommand(InvestorManagerWindowViewModel addInvestorVM,
                           ITransferAgencyService investorService)
 {
     _addInvestorVM   = addInvestorVM;
     _investorService = investorService;
 }