Ejemplo n.º 1
0
 public UserStoryController(
     IUnitOfWork unitOfWork,
     IUserStoryRepository userStoryRepository,
     IMapper mapper,
     IUserStoryService userStoryService,
     IModificationService modificationService) :
     base(unitOfWork, userStoryRepository, mapper, modificationService)
 {
     _userStoryService = userStoryService;
 }
Ejemplo n.º 2
0
 public BoardsController(IMapper mapper,
                         IProjectsService projectsService,
                         IBoardsService boardColumnsService,
                         ISprintsService sprintsService,
                         IUserStoryService userStoryService,
                         ITestsService testsService,
                         ITasksService tasksService,
                         IBugsService bugsService,
                         IBurndownDataService burndownDataService)
     : base(projectsService)
 {
     this.mapper = mapper;
     this.boardColumnsService = boardColumnsService;
     this.sprintsService      = sprintsService;
     this.userStoryService    = userStoryService;
     this.testsService        = testsService;
     this.tasksService        = tasksService;
     this.bugsService         = bugsService;
     this.burndownDataService = burndownDataService;
 }
 public WorkItemsController(IWorkItemService workItemService,
                            IBacklogPrioritiesService backlogPrioritiesService,
                            IProjectsService projectsService,
                            IMapper mapper,
                            IUserStoryService userStoryService,
                            ITasksService tasksService,
                            ITestsService testsService,
                            IBugsService bugsService,
                            ISprintsService sprintsService,
                            IConfiguration config) : base(projectsService)
 {
     this.workItemService          = workItemService;
     this.backlogPrioritiesService = backlogPrioritiesService;
     this.mapper           = mapper;
     this.userStoryService = userStoryService;
     this.tasksService     = tasksService;
     this.testsService     = testsService;
     this.bugsService      = bugsService;
     this.sprintsService   = sprintsService;
     this.config           = config;
 }
 public UserStoryController(IUserStoryService userStoryService,
                            IMapper mapper)
 {
     _userStoryService = userStoryService;
     _mapper           = mapper;
 }