Example #1
0
 public HydrationController(IProxy proxy, ResponseHydrator hydrator)
 {
     _proxy    = proxy;
     _hydrator = hydrator;
 }
Example #2
0
 public RequestHydratorTests()
 {
     _cache    = Substitute.For <ICache>();
     _hydrator = new ResponseHydrator(_cache);
     _output   = new MemoryStream();
 }