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