public MultipleQueriesEfMiddleware(RequestDelegate next, EfDb db) { _next = next; _db = db; }
public SingleQueryEfMiddleware(RequestDelegate next, EfDb db) { _next = next; _db = db; }
public FortunesEfMiddleware(RequestDelegate next, EfDb db, HtmlEncoder htmlEncoder) { _next = next; _db = db; _htmlEncoder = htmlEncoder; }