public BindTransformCommand(IMessaging messaging, IBackendHelper backendHelper, FileSystemManager fileSystemManager, string intermediateFolder, WindowsInstallerData transform, string outputPath, TableDefinitionCollection tableDefinitions)
 {
     this.Messaging          = messaging;
     this.BackendHelper      = backendHelper;
     this.FileSystemManager  = fileSystemManager;
     this.IntermediateFolder = intermediateFolder;
     this.Transform          = transform;
     this.OutputPath         = outputPath;
     this.TableDefinitions   = tableDefinitions;
 }
 public GetFileFacadesFromTransforms(IMessaging messaging, IWindowsInstallerBackendHelper backendHelper, FileSystemManager fileSystemManager, IEnumerable <SubStorage> subStorages)
 {
     this.Messaging         = messaging;
     this.BackendHelper     = backendHelper;
     this.FileSystemManager = fileSystemManager;
     this.SubStorages       = subStorages;
 }
 public GenerateDatabaseCommand(IMessaging messaging, IBackendHelper backendHelper, FileSystemManager fileSystemManager, WindowsInstallerData data, string outputPath, TableDefinitionCollection tableDefinitions, string intermediateFolder, bool keepAddedColumns, bool suppressAddingValidationRows, bool useSubdirectory)
 {
     this.Messaging         = messaging;
     this.BackendHelper     = backendHelper;
     this.FileSystemManager = fileSystemManager;
     this.Data                         = data;
     this.OutputPath                   = outputPath;
     this.TableDefinitions             = tableDefinitions;
     this.IntermediateFolder           = intermediateFolder;
     this.KeepAddedColumns             = keepAddedColumns;
     this.SuppressAddingValidationRows = suppressAddingValidationRows;
     this.UseSubDirectory              = useSubdirectory;
 }
예제 #4
0
 public GetFileFacadesFromTransforms(IMessaging messaging, FileSystemManager fileSystemManager, IEnumerable <SubStorage> subStorages)
 {
     this.Messaging         = messaging;
     this.FileSystemManager = fileSystemManager;
     this.SubStorages       = subStorages;
 }