@RequestMapping(
     value = "/getAllCopiesByBranchId/{branchId}/{pageNo}/{pageSize}",
     method = {RequestMethod.GET, RequestMethod.POST},
     produces = "application/json")
 public List<Copies> getAllCopiesByBranchId(
     @PathVariable int branchId, @PathVariable int pageNo, @PathVariable int pageSize) {
   return cdao.getAllCopiesByBranchId(branchId, pageNo, pageSize);
 }