Esempio n. 1
0
 public NavigateToParrentCommand(NavigateCommand navigateCommand)
 {
     _navigateCommand = navigateCommand ?? throw new ArgumentNullException(nameof(navigateCommand));
 }
 public PasteToCurrentFolderCommand(ICilpboardService cilpboardService, IDialogService dialogService, NavigateCommand navigateCommand)
 {
     _clipboardService = cilpboardService ?? throw new ArgumentNullException(nameof(cilpboardService));
     _dialogService    = dialogService ?? throw new ArgumentNullException(nameof(dialogService));
     _navigateCommand  = navigateCommand ?? throw new ArgumentNullException(nameof(navigateCommand));
 }