public TicketsController(ApplicationDbContext context, UserManager <BTUser> userManager, IBTHistoriesService historyService, IBTAccessService accessService, IBTRolesService rolesService) { _context = context; _userManager = userManager; _historyService = historyService; _accessService = accessService; _rolesService = rolesService; }
public TicketsController(ApplicationDbContext context, IBTProjectService projectService, UserManager <BTUser> userManager, IBTHistoriesService historiesService, IBTAccessService accessService) { _context = context; _projectService = projectService; _userManager = userManager; _historiesService = historiesService; _accessService = accessService; }