Ejemplo n.º 1
0
 public InstallDevMenu(string rootFilesPath, IPhone phone, IBcdInvokerFactory bcdInvokerFactory, IFileSystemOperations fileSystemOperations)
 {
     this.rootFilesPath        = rootFilesPath;
     this.phone                = phone;
     this.bcdInvokerFactory    = bcdInvokerFactory;
     this.fileSystemOperations = fileSystemOperations;
 }
Ejemplo n.º 2
0
 public BootCreator(IBcdInvokerFactory bcdInvokerFactory)
 {
     this.bcdInvokerFactory = bcdInvokerFactory;
 }
Ejemplo n.º 3
0
 public ConfigureBCD(IPhone phone, IBcdInvokerFactory bcdInvokerFactory)
 {
     this.phone             = phone;
     this.bcdInvokerFactory = bcdInvokerFactory;
 }
Ejemplo n.º 4
0
 public ConfigureBCD(IDeploymentContext context, IBcdInvokerFactory bcdInvokerFactory)
 {
     this.phone             = (IPhone)context.Device;
     this.bcdInvokerFactory = bcdInvokerFactory;
 }