public RepositoriesController(IProjectRepositoryService projectRepository, IProjectService project, IPermissionService permission, IBranchService branch, IGHReferenceService gHReference, IGHWebhookService gHWebhook, IGHBranchService gHBranch, IGHRepositoryService gHRepository, IRepositoryService repository, IAccountService account, IErrorHandlerService errorHandler, IJwtAuthService jwtAuth) : base(errorHandler, jwtAuth) { _projectRepository = projectRepository; _project = project; _permission = permission; _branch = branch; _gHReference = gHReference; _gHWebhook = gHWebhook; _gHBranch = gHBranch; _gHRepository = gHRepository; _repository = repository; _account = account; }
public WorkflowsController(ICircleCIConfigurationService circleCIConfiguration, IProjectRepositoryService projectRepository, IBranchService branch, IAccountService account, ITokenService token, ICircleCIProjectService circleCIProject, IGHContentService gHContent, ISprintService sprint, IPermissionService permission, IWorkflowService workflow, IRepositoryService repository, IGHBranchService gHBranch, IErrorHandlerService errorHandler, IJwtAuthService jwtAuth) : base(errorHandler, jwtAuth) { _circleCIConfiguration = circleCIConfiguration; _projectRepository = projectRepository; _branch = branch; _account = account; _token = token; _circleCIProject = circleCIProject; _gHContent = gHContent; _sprint = sprint; _permission = permission; _workflow = workflow; _repository = repository; _gHBranch = gHBranch; }