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