Ejemplo n.º 1
0
 public TokenProvider(
     RequestDelegate next,
     IOptions <TokenProviderOptions> options,
     AppTemplateDbContext db)
 {
     this._next    = next;
     this.db       = db;
     this._options = options.Value;
 }
Ejemplo n.º 2
0
 public UsersController(AppTemplateDbContext db, IMapper mapper)
 {
     this.mapper = mapper;
     this.db     = db;
 }