public dynamic GetAllEnumPropertyEnumPropertyValues(int enumpropertyId)
        {
            var orchestrator = new EnumPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetAllEnumPropertyEnumPropertyValues(enumpropertyId).GetResponse());
        }
        public dynamic CreateEnumProperty([FromBody] CreateEnumPropertyInputModel model)
        {
            var orchestrator = new EnumPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.CreateEnumProperty(model).GetResponse());
        }
        public dynamic EditEnumProperty(int enumpropertyId, [FromBody] EditEnumPropertyInputModel model)
        {
            var orchestrator = new EnumPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditEnumProperty(enumpropertyId, model).GetResponse());
        }
        public dynamic GetAllEnumProperties()
        {
            var orchestrator = new EnumPropertyOrchestrator(new ModelStateWrapper(this.ModelState));

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