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