コード例 #1
0
        public async Task <ActionResult> Edit(TodoElement todo)
        {
            try
            {
                await sqlService.Edit(todo);

                return(Ok());
            }
            catch (Exception)
            {
                return(NotFound());
            }
        }