Exemplo n.º 1
0
 public AuthController(UserManager <IdentityUser> userManager, SignInManager <IdentityUser> signInManager,
                       [FromServices] RuletteDb context)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _context       = context;
 }
Exemplo n.º 2
0
 public SteamController([FromServices] RuletteDb context, IMemoryCache memoryCache)
 {
     _context = context;
     _cache   = memoryCache;
 }
Exemplo n.º 3
0
 public LkController([FromServices] RuletteDb context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public InventoryController([FromServices] RuletteDb context)
 {
     _context = context;
 }