/// <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( ); }
/// <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 ( ); }
public ProgramStarter(IFileListingService fileListingService, IZipFileFactory zipFileFactory) { _fileListingService = fileListingService; _zipFileFactory = zipFileFactory; }