public TicketsController(ApplicationDbContext context, IBTProjectService projectService, UserManager <BTUser> userManager, IBTHistoriesService historiesService, IBTAccessService accessService)
 {
     _context          = context;
     _projectService   = projectService;
     _userManager      = userManager;
     _historiesService = historiesService;
     _accessService    = accessService;
 }
Exemple #2
0
 public ProjectsController(
     ApplicationDbContext context,
     IBTProjectService projectService,
     IBTRoleService roleService)
 {
     _context        = context;
     _projectService = projectService;
     _roleService    = roleService;
 }
Exemple #3
0
 public BTInviteService(
     ApplicationDbContext context,
     UserManager <BTUser> userManager,
     IBTProjectService projectService,
     IBTRoleService roleService)
 {
     _context        = context;
     _userManager    = userManager;
     _projectService = projectService;
     _roleService    = roleService;
 }
Exemple #4
0
 public ProjectsController(ApplicationDbContext context, IBTProjectService bTProjectService, UserManager <BTUser> userManager)
 {
     _context          = context;
     _btProjectService = bTProjectService;
     _userManager      = userManager;
 }