예제 #1
0
 public JsonSimulationBatchPresenter(IInputAndOutputBatchView <JsonRunOptions> view, JsonSimulationRunner batchRunner, IDialogCreator dialogCreator, ILogPresenter logPresenter, ILogger batchLogger, DirectoryMapSettings directoryMapSettings) :
     base(view, batchRunner, dialogCreator, logPresenter, batchLogger, directoryMapSettings)
 {
     view.Caption = "PK-Sim BatchTool: Batch runner for json based PK-Sim simulations";
     _runOptionsDTO.ExportMode = SimulationExportMode.Json | SimulationExportMode.Csv;
 }
예제 #2
0
 public JsonSimulationBatchPresenter(IInputAndOutputBatchView view, JsonSimulationRunner batchRunner, IDialogCreator dialogCreator, ILogPresenter logPresenter, IBatchLogger batchLogger) :
     base(view, batchRunner, dialogCreator, logPresenter, batchLogger)
 {
     view.Caption = "PK-Sim BatchTool: Batch runner for json based PK-Sim simulations";
 }
예제 #3
0
 protected InputAndOutputBatchPresenter(IInputAndOutputBatchView <TRunOptions> view, TBatchRunner batchRunner, IDialogCreator dialogCreator, ILogPresenter logPresenter, ILogger batchLogger, DirectoryMapSettings directoryMapSettings)
     : base(view, batchRunner, dialogCreator, logPresenter, batchLogger)
 {
     _runOptionsDTO.InputFolder  = directoryMapSettings.UsedDirectories[CoreConstants.DirectoryKey.BATCH_INPUT].Path;
     _runOptionsDTO.OutputFolder = directoryMapSettings.UsedDirectories[CoreConstants.DirectoryKey.BATCH_OUTPUT].Path;
 }
예제 #4
0
 public ProjectComparisonPresenter(IInputAndOutputBatchView view, ProjectComparisonRunner batchRunner, IDialogCreator dialogCreator, ILogPresenter logPresenter, IBatchLogger batchLogger)
     : base(view, batchRunner, dialogCreator, logPresenter, batchLogger)
 {
     view.Caption = "PK-Sim BatchTool: Comparison of simulation results in existing projects";
 }
 public InputAndOutputBatchPresenter(IInputAndOutputBatchView view, TBatchRunner batchRunner, IDialogCreator dialogCreator, ILogPresenter logPresenter, IBatchLogger batchLogger)
     : base(view, batchRunner, dialogCreator, logPresenter, batchLogger)
 {
 }