示例#1
0
        public dynamic GetAllEndPointPropertyEndPointDefaultProperties(int endpointpropertyId)
        {
            var orchestrator = new EndPointPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetAllEndPointPropertyEndPointDefaultProperties(endpointpropertyId).GetResponse());
        }
示例#2
0
        public dynamic CreateEndPointProperty([FromBody] CreateEndPointPropertyInputModel model)
        {
            var orchestrator = new EndPointPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.CreateEndPointProperty(model).GetResponse());
        }
示例#3
0
        public dynamic EditEndPointProperty(int endpointpropertyId, [FromBody] EditEndPointPropertyInputModel model)
        {
            var orchestrator = new EndPointPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditEndPointProperty(endpointpropertyId, model).GetResponse());
        }
示例#4
0
        public dynamic GetAllEndPointProperties()
        {
            var orchestrator = new EndPointPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

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