示例#1
0
 public PublishRepository(ISiteBuilder builder, ICompileService compileService, ProjectFinder projectFinder, IProcessRunner processRunner)
 {
     this.builder        = builder;
     this.compileService = compileService;
     this.projectFinder  = projectFinder;
     this.processRunner  = processRunner;
 }
示例#2
0
 public CodeCompilerController(IConfiguration configuration, ICompileService compileService)
 {
     Configuration        = configuration;
     taskManagementApiURL = configuration.GetSection("Endpoints:TaskManagementAPI").Value;
     _compileService      = compileService;
 }