示例#1
0
        public async Task <IActionResult> UpdateStory([Bind("Name, Description")] Story story)
        {
            await _plansService.UpdateStory(new ServiceContext()
            {
                ContextId = "TEST"
            }, story);

            return(View(story));
        }