Exemplo n.º 1
0
 public ProjectsController(
     ApplicationDbContext context,
     IBTProjectService projectService,
     IBTRoleService roleService)
 {
     _context        = context;
     _projectService = projectService;
     _roleService    = roleService;
 }
Exemplo n.º 2
0
 public BTProjectService(
     ApplicationDbContext context,
     UserManager <BTUser> userManager,
     IBTRoleService roleService)
 {
     _context     = context;
     _userManager = userManager;
     _roleService = roleService;
 }
Exemplo n.º 3
0
 public HomeController(ILogger <HomeController> logger, IBTRoleService roleService, ApplicationDbContext context)
 {
     _logger      = logger;
     _roleService = roleService;
     _context     = context;
 }