Exemple #1
0
 public Flash(IFileSystem fileSystem, IImageFlasher flasher,
              IOperationContext operationContext, IFileSystemOperations fileSystemOperations, IOperationProgress progress) : base(fileSystemOperations, operationContext)
 {
     this.fileSystem = fileSystem;
     this.flasher    = flasher;
     this.progress   = progress;
 }
Exemple #2
0
 public Flash(string imagePath, IImageFlasher flasher, IDeploymentContext deploymentContext,
              IOperationContext operationContext, IFileSystemOperations fileSystemOperations, IOperationProgress progress) : base(deploymentContext,
                                                                                                                                  fileSystemOperations, operationContext)
 {
     this.imagePath = imagePath;
     this.flasher   = flasher;
     this.progress  = progress;
 }
Exemple #3
0
 public RaspberryPiDeployer(IImageFlasher flasher, IWindowsDeployer <RaspberryPi> windowsDeployer)
 {
     this.flasher         = flasher;
     this.windowsDeployer = windowsDeployer;
 }
 public RaspberryDisklayoutPreparer(IImageFlasher imageFlasher, IObserver <double> progressObserver)
 {
     this.imageFlasher     = imageFlasher;
     this.progressObserver = progressObserver;
 }