public void CreateNewInvestorWindow() { Window view = new InvestorManagerWindow(); ViewModelWindowBase viewModel = new InvestorManagerWindowViewModel(_investorService); view = ApplyWindowAttributes(view, viewModel); view.ShowDialog(); }
public AddInvestorCommand(InvestorManagerWindowViewModel addInvestorVM, ITransferAgencyService investorService) { _addInvestorVM = addInvestorVM; _investorService = investorService; }