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