Esempio n. 1
0
 public DeleteCommand(FileOperationCache cache, IFileOperationService service)
 {
     _cache   = cache;
     _service = service;
 }
Esempio n. 2
0
 public static DeleteCommand GetDeleteCommand(FileOperationCache cache, IFileOperationService service)
 {
     return(new DeleteCommand(cache, service));
 }
Esempio n. 3
0
 public CutCommand(FileOperationCache cache, string targetPath, IFileOperationService service)
 {
     _cache      = cache;
     _targetPath = targetPath;
     _service    = service;
 }
Esempio n. 4
0
 public static CutCommand GetCutCommand(FileOperationCache cache, string targetPath, IFileOperationService service)
 {
     return(new CutCommand(cache, targetPath, service));
 }