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