コード例 #1
0
 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;
 }
コード例 #2
0
 public QueryController(IHealthDataClient client)
 {
     this.client = client;
 }
コード例 #3
0
 public SubmitController(IHealthDataClient client)
 {
     this.client = client;
 }