コード例 #1
0
 public TideMiddleware(RequestDelegate next, TideVendor tide)
 {
     _next = next;
     _tide = tide ?? throw new ArgumentNullException(nameof(tide));
 }
コード例 #2
0
 public TideVendorRepo(TideVendor client)
 {
     _client = client;
 }