public IHttpActionResult Get([FromUri] RatingSearchParams spaceID) { var response = _service.GetAllRatings(spaceID); if (response == null) { return(NotFound()); } return(Ok(response)); }
public IEnumerable <Rating> GetAllRatings() { return(ratingService.GetAllRatings()); }