public void delete(String todoId) {
   Todo todo = findOne(todoId);
   todoRepository.delete(todo);
 }