public UserService(DbApplicationContext context,
                    UserManager <ApplicationUser> userManager)
 {
     this._context     = context;
     this._userManager = userManager;
 }
Ejemplo n.º 2
0
 public ValuesController(DbApplicationContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public DocumentService(DbApplicationContext context)
 {
     this._context = context;
 }
Ejemplo n.º 4
0
 public UserService(DbApplicationContext context)
 {
     this._context = context;
 }
Ejemplo n.º 5
0
 public MediaFileService(DbApplicationContext context)
 {
     this._context = context;
 }
Ejemplo n.º 6
0
 public IdentityService(IHttpContextAccessor httpContextAccessor, DbApplicationContext appDbContext)
 {
     this._httpContextAccessor = httpContextAccessor;
     this._appDbContext        = appDbContext;
 }