public RestControllerMethodWithContentExecutor()
 {
     _contentSerializer = new ContentSerializer();
     _responseFactory = new RestResponseFactory();
 }
Beispiel #2
0
 public RestControllerMethodExecutor()
 {
     _responseFactory = new RestResponseFactory();
 }
 public RestControllerMethodWithContentExecutor()
 {
     _contentSerializer = new ContentSerializer();
     _responseFactory   = new RestResponseFactory();
 }
 internal RestControllerRequestHandler()
 {
     _restMethodCollection = new List <RestControllerMethodInfo>();
     _responseFactory      = new RestResponseFactory();
     _methodExecuteFactory = new RestControllerMethodExecutorFactory();
 }
 internal RestControllerRequestHandler()
 {
     _restMethodCollection = ImmutableArray <RestControllerMethodInfo> .Empty;
     _responseFactory      = new RestResponseFactory();
     _methodExecuteFactory = new RestControllerMethodExecutorFactory();
 }
 public RestControllerMethodExecutor()
 {
     _responseFactory = new RestResponseFactory();
 }
 public RestControllerMethodWithBodyExecutor()
 {
     _bodySerializer = new BodySerializer();
     _responseFactory = new RestResponseFactory();
 }
Beispiel #8
0
 public RestControllerMethodWithBodyExecutor()
 {
     _bodySerializer  = new BodySerializer();
     _responseFactory = new RestResponseFactory();
 }