public MultipleQueriesEfMiddleware(RequestDelegate next, EfDb db)
 {
     _next = next;
     _db   = db;
 }
 public SingleQueryEfMiddleware(RequestDelegate next, EfDb db)
 {
     _next = next;
     _db   = db;
 }
Ejemplo n.º 3
0
 public FortunesEfMiddleware(RequestDelegate next, EfDb db, HtmlEncoder htmlEncoder)
 {
     _next        = next;
     _db          = db;
     _htmlEncoder = htmlEncoder;
 }