Пример #1
0
 public CategoryController(RequestPile pilaDeLlamadas, IServiceScopeFactory serviceScopeFactory, IHttpClientFactory httpClientFactory)
 {
     this.requestPile = pilaDeLlamadas;
     httpFactory      = httpClientFactory;
     CustomScope      = new CustomScope(httpFactory, serviceScopeFactory);
 }
 public EditorialController(RequestPile reqPile, IServiceScopeFactory serviceScopeFactory, IHttpClientFactory httpClientFactory)
 {
     this.requestsPile = reqPile;
     httpFactory       = httpClientFactory;
     CustomScope       = new CustomScope(httpFactory, serviceScopeFactory);
 }
Пример #3
0
 public BookController(RequestPile reqPile, IServiceScopeFactory serviceScopeFactory, IHttpClientFactory httpClientFactory)
 {
     requestPile = reqPile;
     httpFactory = httpClientFactory;
     CustomScope = new CustomScope(httpFactory, serviceScopeFactory);
 }