Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BusyBox"/> class.
 /// </summary>
 /// <param name="device">The device.</param>
 public BusyBox(IDevice device)
 {
     this.Device             = device;
     this.fileSystem         = new FileSystem(this.Device);
     this.fileListingService = new FileListingService(this.Device);
     Version  = new System.Version("0.0.0.0");
     Commands = new List <String> ( );
     CheckForBusyBox( );
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BusyBox"/> class.
 /// </summary>
 /// <param name="device">The device.</param>
 public BusyBox( IDevice device )
 {
     this.Device = device;
     this.fileSystem = new FileSystem(this.Device);
     this.fileListingService = new FileListingService(this.Device);
     Version = new System.Version ( "0.0.0.0" );
     Commands = new List<String> ( );
     CheckForBusyBox ( );
 }
Пример #3
0
 public ProgramStarter(IFileListingService fileListingService, IZipFileFactory zipFileFactory)
 {
     _fileListingService = fileListingService;
     _zipFileFactory     = zipFileFactory;
 }