public DeleteRepresentationAction(
     IRepresentationStore representationStore,
     IApiResponseFactory apiResponseFactory)
 {
     _representationStore = representationStore;
     _apiResponseFactory  = apiResponseFactory;
 }
Beispiel #2
0
 public GetRepresentationsAction(
     IRepresentationStore representationStore,
     IRepresentationResponseParser representationResponseParser,
     ICommonAttributesFactory commonAttributesFactory,
     IParametersValidator parametersValidator)
 {
     _commonAttributesFactory      = commonAttributesFactory;
     _representationStore          = representationStore;
     _representationResponseParser = representationResponseParser;
     _parametersValidator          = parametersValidator;
 }
 public GetRepresentationAction(
     IRepresentationStore representationStore,
     IRepresentationResponseParser responseParser,
     IApiResponseFactory apiResponseFactory,
     IParametersValidator parametersValidator)
 {
     _representationStore = representationStore;
     _responseParser      = responseParser;
     _apiResponseFactory  = apiResponseFactory;
     _parametersValidator = parametersValidator;
 }
 public UpdateRepresentationAction(
     IRepresentationRequestParser requestParser,
     IRepresentationStore representationStore,
     IApiResponseFactory apiResponseFactory,
     IRepresentationResponseParser responseParser,
     IParametersValidator parametersValidator,
     IErrorResponseFactory errorResponseFactory,
     IFilterParser filterParser)
 {
     _requestParser        = requestParser;
     _representationStore  = representationStore;
     _apiResponseFactory   = apiResponseFactory;
     _responseParser       = responseParser;
     _parametersValidator  = parametersValidator;
     _errorResponseFactory = errorResponseFactory;
     _filterParser         = filterParser;
 }