Exemplo n.º 1
0
 public ImportPriceCommand(ImportDataToolViewModel importVM,
                           IStaticReferences staticReferences, IImportService importService)
 {
     _importVM         = importVM;
     _importService    = importService;
     _staticReferences = staticReferences;
 }
Exemplo n.º 2
0
        public void CreateImportDataToolWindow()
        {
            Window view = new ImportDataToolWindow();
            ViewModelWindowBase viewModel = new ImportDataToolViewModel(_staticReferences, _importService);

            view = ApplyWindowAttributes(view, viewModel);
            view.ShowDialog();
        }