public dynamic EditEnumPropertyValue(int enumpropertyvalueId, [FromBody] EditEnumPropertyValueInputModel model)
        {
            var orchestrator = new EnumPropertyValueOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditEnumPropertyValue(enumpropertyvalueId, model).GetResponse());
        }
        public dynamic GetEnumPropertyValueDetails(int enumpropertyvalueId)
        {
            var orchestrator = new EnumPropertyValueOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetEnumPropertyValueDetails(enumpropertyvalueId).GetResponse());
        }
        public dynamic CreateEnumPropertyValue([FromBody] CreateEnumPropertyValueInputModel model)
        {
            var orchestrator = new EnumPropertyValueOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.CreateEnumPropertyValue(model).GetResponse());
        }
        public dynamic GetAllEnumPropertyValues()
        {
            var orchestrator = new EnumPropertyValueOrchestrator(new ModelStateWrapper(this.ModelState));

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