public async Task <ActionResult <TodoItemDto> > GetTodoItem(long id)
        {
            var todoItem = await _context !.TodoItems.FindAsync(id);

            if (todoItem == null)
            {
                return(NotFound());
            }

            return(ItemToDto(todoItem));
        }
        public async Task <ActionResult <TodoItemDto> > DeleteTodoItem(long id)
        {
            var todoItem = await _context !.TodoItems.FindAsync(id);

            if (todoItem == null)
            {
                return(NotFound());
            }

            _context.TodoItems.Remove(todoItem);
            await _context.SaveChangesAsync();

            return(ItemToDto(todoItem));
        }
        PutTodoItem(long id, TodoItemDto todoItemDto)
        {
            if (id != todoItemDto.Id)
            {
                return(BadRequest());
            }

            var todoItem = await _context !.TodoItems.FindAsync(id);

            if (todoItem == null)
            {
                return(NotFound());
            }

            todoItem.Name       = todoItemDto.Name;
            todoItem.IsComplete = todoItemDto.IsComplete;

            _context.Entry(todoItem).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!TodoItemExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }