public IEnumerable <OfferModel> GetOffersByActionPriceRange(double lowerPrice, double upperPrice) { return(offersService.GetOffersByActionPriceRange(lowerPrice, upperPrice)); }
public IHttpActionResult GetOffersInGivenPriceRange(decimal lowerPrice, decimal upperPrice) { return(Ok(offerService.GetOffersByActionPriceRange(lowerPrice, upperPrice))); }