コード例 #1
0
 public OdsApiFacade(IMapper mapper, IOdsRestClient restClient)
 {
     _mapper     = mapper;
     _restClient = restClient;
 }
コード例 #2
0
 public SubmitResource(IOdsRestClient poster)
 {
     _poster = poster;
 }
コード例 #3
0
 public EducationOrganizationIdentityCache(XmlSchemaSet schemaSet, IOdsRestClient client)
 {
     _schemaSet = schemaSet;
     _client    = client;
     _educationOrganizations = new Lazy <List <JObject> >(Initialize);
 }
コード例 #4
0
 public PerformGetByExampleStep(IOdsRestClient client)
 {
     Log     = LogManager.GetLogger(GetType().Name);
     _client = client;
 }