예제 #1
0
 // GET api/books?price=100
 public IEnumerable <Book> Get(decimal price)
 {
     return(books.AllBooksBySelectedPrice(price));
 }