public TideMiddleware(RequestDelegate next, TideVendor tide)
 {
     _next = next;
     _tide = tide ?? throw new ArgumentNullException(nameof(tide));
 }
Esempio n. 2
0
 public TideVendorRepo(TideVendor client)
 {
     _client = client;
 }