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