Ejemplo n.º 1
0
 public GamesController(GASPGDbContext context, IMapper mapper,
                        UserManager <AppUser> userManager, SignInManager <AppUser> signInManager)
 {
     _context       = context;
     _mapper        = mapper;
     _userManager   = userManager;
     _signInManager = signInManager;
 }
Ejemplo n.º 2
0
 public RoleController(GASPGDbContext context, UserManager <AppUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
 public DevelopersController(GASPGDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Ejemplo n.º 4
0
 public GenresController(GASPGDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }