Ejemplo n.º 1
0
 @RequestMapping(
     value = "/getCopiesByIds/{branchId}/{bookId}",
     method = {RequestMethod.GET, RequestMethod.POST},
     produces = "application/json")
 public Copies getCopiesByIds(@PathVariable int branchId, @PathVariable int bookId) {
   return cdao.getCopiesByIds(bookId, branchId);
 }