public FileInformationDialogViewModel(
            IFileService fileService,
            IPathService pathService,
            MainNodeInfoTabViewModel mainNodeInfoTabViewModel)
        {
            _fileService = fileService;
            _pathService = pathService;

            MainNodeInfoTabViewModel = mainNodeInfoTabViewModel;
        }
Beispiel #2
0
        public DirectoryInformationDialogViewModel(
            IDirectoryService directoryService,
            IPathService pathService,
            IApplicationDispatcher applicationDispatcher,
            MainNodeInfoTabViewModel mainNodeInfoTabViewModel)
        {
            _directoryService      = directoryService;
            _pathService           = pathService;
            _applicationDispatcher = applicationDispatcher;

            MainNodeInfoTabViewModel = mainNodeInfoTabViewModel;
        }