Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. @PostMapping("/add/new")
  2. public ResponseEntity<Void> addNewFood(@RequestBody Calendar calendar) {
  3.     List<Product> products = ((Dish) calendar.getFood()).getProducts();
  4.     return ResponseEntity.ok().build();
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement