public AccountController(
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     CineContext context)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _context       = context;
 }
Exemple #2
0
 public CineController(CineContext context)
 {
     _context = context;
 }
Exemple #3
0
 public UserRepository(CineContext context) : base(context)
 {
 }
Exemple #4
0
 public BaseRepository(CineContext context)
 {
     _context = context;
 }
 public UsersService(IOptions <AppSettings> appSettings, CineContext context)
 {
     _appSettings = appSettings.Value;
     _context     = context;
 }