示例#1
0
 public PublishTask()
 {
     _fileSystem = new FileSystem();
     _configurationFactory = new ConfigurationFactory(_fileSystem, new TransformFactory(), new TargetPathFactory());
     _fileCopyService = new FileCopyService(_fileSystem);
     _xmlTransformService = new XmlTransformService(_fileSystem);
     _publisherSettingsFactory = new PublisherSettingsFactory();
 }
示例#2
0
 public Publisher(IPublisherSettings publisherSettings, IFileCopyService fileCopyService, 
     IFileSystem fileSystem, IXmlTransformService xmlTransformService)
 {
     _publisherSettings = publisherSettings;
     _fileCopyService = fileCopyService;
     _fileSystem = fileSystem;
     _xmlTransformService = xmlTransformService;
 }
示例#3
0
 public UpdaterService(ILogger logger, IApplicationConfig appConfig, IFileCopyService fileCopyService, IDownloadService downloadService, IProcessManager processManager)
 {
     _logger          = logger;
     _appConfig       = appConfig;
     _fileCopyService = fileCopyService;
     _downloadService = downloadService;
     _processManager  = processManager;
 }
示例#4
0
 public ReferenceMover(
     ICheckoutService checkOutService,
     IFileCopyService fileCopyService,
     IReferenceHintPathService referenceHintPathService )
 {
     _checkOutService = checkOutService;
     _fileCopyService = fileCopyService;
     _referenceHintPathService = referenceHintPathService;
 }
 public UpdaterService(ILogger <UpdaterService> logger,
                       IOptions <ApplicationConfig> appConfig,
                       IFileCopyService fileCopyService,
                       IDownloadService downloadService,
                       IProcessManager processManager)
 {
     _logger          = logger;
     _appConfig       = appConfig.Value;
     _fileCopyService = fileCopyService;
     _downloadService = downloadService;
     _processManager  = processManager;
 }
示例#6
0
 public FileCopyServiceFacts()
 {
     _fileSystem = new MockFileSystem();
     _fileCopyService = new FileCopyService(_fileSystem);
 }
示例#7
0
 public CopyFileOnCreatedEventDelegate(IFileCopyService fileCopyService)
 {
     this.fileCopyService = fileCopyService;
 }