public ProjectsController(IProjectService projectService,
                           IBuildOperationsService builder,
                           IEnvironmentVariablesService envService,
                           IBuildService buildService)
 {
     _builder        = builder;
     _envService     = envService;
     _projectService = projectService;
     _buildService   = buildService;
 }
Esempio n. 2
0
 public WebhooksHandler(IBuildOperationsService builder, IProjectService projectService)
 {
     _builder        = builder;
     _projectService = projectService;
 }
 public WebhooksHandler(IBuildOperationsService builder)
 {
     _builder = builder;
 }