public InvokingApiLoggingInterceptorMiddleware(RequestDelegate next, IInvokingApiLoggingStore store)
 {
     this.next  = next;
     this.store = store;
 }
 public InvokingApiLoggingQueryMiddleware(RequestDelegate next, IInvokingApiLoggingStore store)
 {
     this.store = store;
     this.next  = next;
 }