Example #1
0
        public dynamic EditEndPointDefaultProperty(int endpointdefaultpropertyId, [FromBody] EditEndPointDefaultPropertyInputModel model)
        {
            var orchestrator = new EndPointDefaultPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditEndPointDefaultProperty(endpointdefaultpropertyId, model).GetResponse());
        }
Example #2
0
        public dynamic GetEndPointDefaultPropertyDetails(int endpointdefaultpropertyId)
        {
            var orchestrator = new EndPointDefaultPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetEndPointDefaultPropertyDetails(endpointdefaultpropertyId).GetResponse());
        }
Example #3
0
        public dynamic CreateEndPointDefaultProperty([FromBody] CreateEndPointDefaultPropertyInputModel model)
        {
            var orchestrator = new EndPointDefaultPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.CreateEndPointDefaultProperty(model).GetResponse());
        }
Example #4
0
        public dynamic GetAllEndPointDefaultProperties()
        {
            var orchestrator = new EndPointDefaultPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

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