예제 #1
0
        public dynamic EditEndPointModelProperty(int endpointmodelpropertyId, [FromBody] EditEndPointModelPropertyInputModel model)
        {
            var orchestrator = new EndPointModelPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditEndPointModelProperty(endpointmodelpropertyId, model).GetResponse());
        }
예제 #2
0
        public dynamic GetEndPointModelPropertyDetails(int endpointmodelpropertyId)
        {
            var orchestrator = new EndPointModelPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetEndPointModelPropertyDetails(endpointmodelpropertyId).GetResponse());
        }
예제 #3
0
        public dynamic CreateEndPointModelProperty([FromBody] CreateEndPointModelPropertyInputModel model)
        {
            var orchestrator = new EndPointModelPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.CreateEndPointModelProperty(model).GetResponse());
        }
예제 #4
0
        public dynamic GetAllEndPointModelProperties()
        {
            var orchestrator = new EndPointModelPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetAllEndPointModelProperties().GetResponse());
        }