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