public Review FindById(int id) { var data = _repo.FindById(id); if (data == null) { throw new System.Exception("Invalid Id"); } return(data); }