public TasksController(IProjectRepositoryService projectRepository, IReportService report, ITaskService task, ISprintService sprint, IPermissionService permission, IErrorHandlerService errorHandler, IJwtAuthService jwtAuth) : base(errorHandler, jwtAuth)
 {
     _projectRepository = projectRepository;
     _report            = report;
     _task       = task;
     _sprint     = sprint;
     _permission = permission;
 }
 public ProjectsController(IConfigurationFileService configurationFile, IGHInvitationService gHInvitation, IGHCollaboratorService gHCollaborator, IRepositoryService repository, IProjectRepositoryService projectRepository, ICollaboratorService collaborator, IPermissionService permission, IAccountService account, IProjectService project, IErrorHandlerService errorHandler, IJwtAuthService jwtAuth) : base(errorHandler, jwtAuth)
 {
     _configurationFile = configurationFile;
     _gHInvitation      = gHInvitation;
     _gHCollaborator    = gHCollaborator;
     _repository        = repository;
     _projectRepository = projectRepository;
     _collaborator      = collaborator;
     _permission        = permission;
     _account           = account;
     _project           = project;
 }
Beispiel #3
0
 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;
 }
Beispiel #5
0
 public BranchesController(IProjectRepositoryService projectRepository, IPermissionService permission, IBranchService branch, IErrorHandlerService errorHandler, IJwtAuthService jwtAuth) : base(errorHandler, jwtAuth)
 {
     _projectRepository = projectRepository;
     _permission        = permission;
     _branch            = branch;
 }