Example #1
0
 protected AbstractCommandBuilder(
     REEFFileNames fileNames,
     AzureBatchFileNames azureBatchFileNames,
     string commandPrefix,
     string osCommandFormat)
 {
     _fileNames           = fileNames;
     _osCommandFormat     = osCommandFormat;
     _commandPrefix       = commandPrefix;
     _azureBatchFileNames = azureBatchFileNames;
 }
Example #2
0
 private WindowsCommandBuilder(
     REEFFileNames fileNames,
     AzureBatchFileNames azureBatchFileNames) : base(fileNames, azureBatchFileNames,
                                                     CommandPrefix, OsCommandFormat)
 {
 }