public DownloadsController(IDownloadsService downloadsService, IEstablishmentReadService establishmentReadService, IGroupDownloadService groupDownloadService, HttpClientWrapper httpClientHelper)
 {
     _downloadsService         = downloadsService;
     _establishmentReadService = establishmentReadService;
     _groupDownloadService     = groupDownloadService;
     _httpClientHelper         = httpClientHelper;
 }
Esempio n. 2
0
 public ChangeHistoryController(IChangeHistoryService svc, ICachedLookupService lookupService, IEstablishmentReadService establishmentReadService, IGroupReadService groupReadService, IGroupDownloadService groupDownloadService)
 {
     _svc                      = svc;
     _lookupService            = lookupService;
     _establishmentReadService = establishmentReadService;
     _groupReadService         = groupReadService;
     _groupDownloadService     = groupDownloadService;
 }
 public GroupSearchController(
     IGroupReadService groupReadService,
     IGroupDownloadService groupDownloadService,
     ICachedLookupService lookupService)
 {
     _groupReadService     = groupReadService;
     _lookupService        = lookupService;
     _groupDownloadService = groupDownloadService;
 }
 public DownloadsController(IDownloadsService downloadsService, IEstablishmentReadService establishmentReadService, IGroupDownloadService groupDownloadService)
 {
     _downloadsService         = downloadsService;
     _establishmentReadService = establishmentReadService;
     _groupDownloadService     = groupDownloadService;
 }