public ProjectsController(ApplicationDbContext context, IBTProjectsService projectService, IBTRolesService rolesService, UserManager <BTUser> userManager)
 {
     _context        = context;
     _projectService = projectService;
     _rolesService   = rolesService;
     _userManager    = userManager;
 }
Ejemplo n.º 2
0
 public TicketsController(ApplicationDbContext context, UserManager <BTUser> userManager, IBTHistoriesService historyService, IBTAccessService accessService, IBTRolesService rolesService)
 {
     _context        = context;
     _userManager    = userManager;
     _historyService = historyService;
     _accessService  = accessService;
     _rolesService   = rolesService;
 }
Ejemplo n.º 3
0
 public UserRolesController(ApplicationDbContext context, IBTRolesService rolesService, UserManager <BTUser> userManager)
 {
     _context      = context;
     _rolesService = rolesService;
     _userManager  = userManager;
 }
Ejemplo n.º 4
0
 public ManageUserRoles(ApplicationDbContext context, UserManager <BTUser> userManager, IBTRolesService btRoles)
 {
     _context     = context;
     _userManager = userManager;
     _BTRoles     = btRoles;
 }