internal Todo GetOne(int id) { var todo = _repo.GetOne(id); if (todo == null) { throw new SystemException("Invalid Id"); } else { return(todo); } }