コード例 #1
0
        public dynamic EditEntity(int entityId, [FromBody] TestEditEntityInputModel model)
        {
            var orchestrator = new EntityTestOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditEntity(entityId, model).GetResponse());
        }