Ejemplo n.º 1
0
 public ProjectService(BuilderContext context,
                       IMapper mapper,
                       IQuartzService quartzService,
                       IBuildStepService buildStepService,
                       ISynchronizationHelper synchronizationHelper) : base(context, mapper)
 {
     _quartzService         = quartzService;
     _buildStepService      = buildStepService;
     _synchronizationHelper = synchronizationHelper;
 }
Ejemplo n.º 2
0
 public BuildStepsController(IBuildStepService buildStepService)
 {
     _buildStepService = buildStepService;
 }
Ejemplo n.º 3
0
 public BuildStepController(ILogger <BuildStepController> logger, IBuildStepService buildStepService)
 {
     this.logger           = logger;
     this.buildStepService = buildStepService;
 }