コード例 #1
0
 public DeploymentManagerController(IIndexViewModelBuilder indexViewModelBuilder,
     IModifyViewModelBuilder modifyViewModelBuilder,
     IProcessInputModelService processInputModelService,
     IDeploymentRepository deploymentRepository,
     IInstanceToWidgetInputModelMapper instanceToWidgetInputModelMapper,
     IGuidGetter guidGetter,
     ITextTemplateZipProcessor textTemplateZipProcessor,
     ITextTemplateBatchContext textTemplateBatchContext,
     IGetWorkingFolderPath getWorkingFolderPath,
     IFileSystem fileSystem,
     IT4StateContext t4StateContext,
     DeployToBranchService deployToBranchService)
 {
     this.deployToBranchService = deployToBranchService;
     this.t4StateContext = t4StateContext;
     this.fileSystem = fileSystem;
     this.getWorkingFolderPath = getWorkingFolderPath;
     this.textTemplateBatchContext = textTemplateBatchContext;
     this.textTemplateZipProcessor = textTemplateZipProcessor;
     this.guidGetter = guidGetter;
     this.instanceToWidgetInputModelMapper = instanceToWidgetInputModelMapper;
     this.deploymentRepository = deploymentRepository;
     this.processInputModelService = processInputModelService;
     this.modifyViewModelBuilder = modifyViewModelBuilder;
     this.indexViewModelBuilder = indexViewModelBuilder;
 }
コード例 #2
0
 public DeploymentManagerController(IIndexViewModelBuilder indexViewModelBuilder,
                                    IModifyViewModelBuilder modifyViewModelBuilder,
                                    IProcessInputModelService processInputModelService,
                                    IDeploymentRepository deploymentRepository,
                                    IInstanceToWidgetInputModelMapper instanceToWidgetInputModelMapper,
                                    IGuidGetter guidGetter,
                                    ITextTemplateZipProcessor textTemplateZipProcessor,
                                    ITextTemplateBatchContext textTemplateBatchContext,
                                    IGetWorkingFolderPath getWorkingFolderPath,
                                    IFileSystem fileSystem,
                                    IT4StateContext t4StateContext,
                                    DeployToBranchService deployToBranchService)
 {
     this.deployToBranchService            = deployToBranchService;
     this.t4StateContext                   = t4StateContext;
     this.fileSystem                       = fileSystem;
     this.getWorkingFolderPath             = getWorkingFolderPath;
     this.textTemplateBatchContext         = textTemplateBatchContext;
     this.textTemplateZipProcessor         = textTemplateZipProcessor;
     this.guidGetter                       = guidGetter;
     this.instanceToWidgetInputModelMapper = instanceToWidgetInputModelMapper;
     this.deploymentRepository             = deploymentRepository;
     this.processInputModelService         = processInputModelService;
     this.modifyViewModelBuilder           = modifyViewModelBuilder;
     this.indexViewModelBuilder            = indexViewModelBuilder;
 }
コード例 #3
0
 public ToolLinkProviderNodeController(IModifyViewModelBuilder modifyViewModelBuilder,
     IToolLinkProviderDraftRepository toolLinkProviderDraftRepository,
     ITreeNodeSummaryContext treeNodeSummaryContext,
     ICommandBus commandBus,
     ICurrentUserContext currentUserContext)
 {
     this.currentUserContext = currentUserContext;
     this.commandBus = commandBus;
     this.treeNodeSummaryContext = treeNodeSummaryContext;
     this.toolLinkProviderDraftRepository = toolLinkProviderDraftRepository;
     this.modifyViewModelBuilder = modifyViewModelBuilder;
 }
コード例 #4
0
 public UserController(IIndexViewModelBuilder indexViewModelBuilder,
     IModifyViewModelBuilder modifyViewModelBuilder,
     IProcessUserInputModelService processUserInputModelService,
     IUserRepository userRepository,
     IUserToUserInputModelMapper userToUserInputModelMapper,
     IGuidGetter guidGetter)
 {
     this.guidGetter = guidGetter;
     this.userToUserInputModelMapper = userToUserInputModelMapper;
     this.userRepository = userRepository;
     this.processUserInputModelService = processUserInputModelService;
     this.modifyViewModelBuilder = modifyViewModelBuilder;
     this.indexViewModelBuilder = indexViewModelBuilder;
 }
 public TextTemplateBatchManagerController(IIndexViewModelBuilder indexViewModelBuilder,
                                           IGuidGetter guidGetter,
                                           IModifyViewModelBuilder modifyViewModelBuilder,
                                           ITextTemplateBatchToTextTemplateBatchModifyInputModelMapper textTemplateBatchToTextTemplateBatchModifyInputModelMapper,
                                           ITextTemplateBatchRepository textTemplateBatchRepository,
                                           IProcessTextTemplateBatchModifyInputModelService processTextTemplateBatchModifyInputModelService,
                                           IGetWorkingFolderPath getWorkingFolderPath,
                                           IFileSystem fileSystem)
 {
     this.fileSystem           = fileSystem;
     this.getWorkingFolderPath = getWorkingFolderPath;
     this.processTextTemplateBatchModifyInputModelService = processTextTemplateBatchModifyInputModelService;
     this.textTemplateBatchRepository = textTemplateBatchRepository;
     this.textTemplateBatchToTextTemplateBatchModifyInputModelMapper = textTemplateBatchToTextTemplateBatchModifyInputModelMapper;
     this.modifyViewModelBuilder = modifyViewModelBuilder;
     this.guidGetter             = guidGetter;
     this.indexViewModelBuilder  = indexViewModelBuilder;
 }
 public TextTemplateBatchManagerController(IIndexViewModelBuilder indexViewModelBuilder, 
     IGuidGetter guidGetter,
     IModifyViewModelBuilder modifyViewModelBuilder,
     ITextTemplateBatchToTextTemplateBatchModifyInputModelMapper textTemplateBatchToTextTemplateBatchModifyInputModelMapper,
     ITextTemplateBatchRepository textTemplateBatchRepository,
     IProcessTextTemplateBatchModifyInputModelService processTextTemplateBatchModifyInputModelService,
     IGetWorkingFolderPath getWorkingFolderPath,
     IFileSystem fileSystem)
 {
     this.fileSystem = fileSystem;
     this.getWorkingFolderPath = getWorkingFolderPath;
     this.processTextTemplateBatchModifyInputModelService = processTextTemplateBatchModifyInputModelService;
     this.textTemplateBatchRepository = textTemplateBatchRepository;
     this.textTemplateBatchToTextTemplateBatchModifyInputModelMapper = textTemplateBatchToTextTemplateBatchModifyInputModelMapper;
     this.modifyViewModelBuilder = modifyViewModelBuilder;
     this.guidGetter = guidGetter;
     this.indexViewModelBuilder = indexViewModelBuilder;
 }