internal Todo GetById(int id) { Todo data = _repo.GetById(id); if (data == null) { throw new Exception("Invalid Id"); } return(data); }