public AuthController(TheDbContext context,
                       UserManager <AppUser> userManager,
                       SignInManager <AppUser> signInManager,
                       string key
                       ) : base(context)
 {
     this.mUserManager   = userManager;
     this.mSigninManager = signInManager;
     this.Skey           = key;
 }
Exemplo n.º 2
0
 public BaseService(TheDbContext _context)
 {
     context = _context;
 }
Exemplo n.º 3
0
 public AuthSender(TheDbContext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public TodoTaskService(TheDbContext context)
 {
     _context = context;
 }
 public BaseController(TheDbContext context)
 {
     repo = new BaseService <Entity>(context);
 }