public SprintsController(ISprintsService sprintsService,
                          IProjectsService projectsService,
                          IMapper mapper)
     : base(projectsService)
 {
     this.sprintsService = sprintsService;
     this.mapper         = mapper;
 }
예제 #2
0
 public IndexModel(TimeTracking.Models.TimeTrackDataContext context,
                   IAuthorizationService authorizationService,
                   UserManager <IdentityUser> userManager,
                   ISprintsService sprintsService,
                   IIssueService issueService)
     : base(context, authorizationService, userManager, sprintsService, issueService)
 {
 }
예제 #3
0
 public ProjectsService(
     MarathonDbContext dbContext,
     IIdentityService identityService,
     UserManager <User> userManager,
     ISprintsService sprintsService,
     IHubContext <UpdatesHub> hub)
 {
     this.dbContext       = dbContext;
     this.identityService = identityService;
     this.userManager     = userManager;
     this.sprintsService  = sprintsService;
     this.hub             = hub;
 }
예제 #4
0
 public PageModelBase(TimeTracking.Models.TimeTrackDataContext context,
                      IAuthorizationService authorizationService,
                      UserManager <IdentityUser> userManager,
                      ISprintsService sprintsService,
                      IIssueService issueService)
     : base()
 {
     this.context              = context;
     this.userManager          = userManager;
     this.authorizationService = authorizationService;
     this.sprintsService       = sprintsService;
     this.issueService         = issueService;
 }
예제 #5
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;
 }
예제 #7
0
 public SprintsController(ISprintsService sprintService)
 {
     this.sprintService = sprintService;
 }