コード例 #1
0
 public RestorePoint
 (
     String path,
     IReadOnlyCollection <FileData> files,
     StorageAlgorithmType storageAlgorithmType,
     RestoreType restoreType,
     DateTime creationTime
 )
 {
     Path                 = path;
     Files                = files.Select(file => file.CreateRestoredFile(path)).Where(file => !file.IsNull).ToList();
     CreationTime         = creationTime;
     StorageAlgorithmType = storageAlgorithmType;
     RestoreType          = restoreType;
 }
コード例 #2
0
ファイル: JointRestorePoint.cs プロジェクト: s4xack/Oop
 public JointRestorePoint
 (
     String path,
     IReadOnlyCollection <FileData> files,
     StorageAlgorithmType storageAlgorithmType,
     RestoreType restoreType,
     DateTime creationTime
 ) : base
     (
         path,
         files,
         storageAlgorithmType,
         restoreType,
         creationTime
     )
 {
 }