Ejemplo n.º 1
0
 public PaymentsController(IOptions <AppStaticValues> appValues, PaymentsContext context)
 {
     _dbContext = context;
     _appValues = appValues.Value;
 }
Ejemplo n.º 2
0
 public AuthorizationFilter(RequestDelegate next, IOptions <AppStaticValues> stat)
 {
     _appStaticValues = stat.Value;
     _next            = next;
 }