public AgencySubjectQueryService(IAgencyApiClient agencyApiClient, IHealthDataClient healthDataClient, ISampleMapper sampleMapper, ISampleDataTypeMapper sampleDataTypeMapper, IMemoryCache memoryCache, IHttpContextAccessor httpContextAccessor)
 {
     this.agencyApiClient      = agencyApiClient;
     this.healthDataClient     = healthDataClient;
     this.sampleMapper         = sampleMapper;
     this.sampleDataTypeMapper = sampleDataTypeMapper;
     this.memoryCache          = memoryCache;
     this.httpContextAccessor  = httpContextAccessor;
 }
Beispiel #2
0
 public SampleMapper(ISampleDataTypeMapper sampleDataTypeMapper)
 {
     this.sampleDataTypeMapper = sampleDataTypeMapper;
 }
 public AgencyQueryController(IAgencySubjectQueryService agencySubjectQueryService, ISampleDataTypeMapper sampleDataTypeMapper)
 {
     this.agencySubjectQueryService = agencySubjectQueryService;
     this.sampleDataTypeMapper      = sampleDataTypeMapper;
 }