Пример #1
0
 public RepresentationResponseParser(
     ISchemaStore schemaStore,
     ICommonAttributesFactory commonAttributeFactory)
 {
     _schemasStore            = schemaStore;
     _commonAttributesFactory = commonAttributeFactory;
 }
Пример #2
0
 public GetRepresentationsAction(
     IRepresentationStore representationStore,
     IRepresentationResponseParser representationResponseParser,
     ICommonAttributesFactory commonAttributesFactory,
     IParametersValidator parametersValidator)
 {
     _commonAttributesFactory      = commonAttributesFactory;
     _representationStore          = representationStore;
     _representationResponseParser = representationResponseParser;
     _parametersValidator          = parametersValidator;
 }
Пример #3
0
 public RepresentationResponseParser(ISchemaStore schemaStore, ICommonAttributesFactory commonAttributeFactory, IEnumerable <IAttributeMapper> attributeMappers)
 {
     _schemasStore            = schemaStore;
     _commonAttributesFactory = commonAttributeFactory;
     _attributeMappers        = attributeMappers;
 }