public FortunesDapperMiddleware(RequestDelegate next, DapperDb db, HtmlEncoder htmlEncoder)
 {
     _next = next;
     _db = db;
     _htmlEncoder = htmlEncoder;
 }
 public MultipleUpdatesDapperMiddleware(RequestDelegate next, DapperDb db)
 {
     _next = next;
     _db = db;
 }
 public SingleQueryDapperMiddleware(RequestDelegate next, DapperDb db)
 {
     _next = next;
     _db = db;
 }