Ejemplo n.º 1
0
 public MatchesController(UserManager <ApplicationUser> userManager, ApplicationDbContext context, PopcornDbContext popcornContext)
 {
     _userManager    = userManager;
     _context        = context;
     _popcornContext = popcornContext;
 }
Ejemplo n.º 2
0
 public DadfolioController(PopcornDbContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Ejemplo n.º 3
0
 public BrowseController(ApplicationDbContext context, UserManager <ApplicationUser> userManager, PopcornDbContext popcornContext)
 {
     _userManager    = userManager;
     _context        = context;
     _popcornContext = popcornContext;
 }