source: src/main/java/com/example/villadihovo/web/controller/ControllersForAllReservations/FoodReservationsController.java

Last change on this file was f7c05a1, checked in by Elena Shulevska <elena.shulevska@…>, 15 months ago

initial commit of the source code on origin

  • Property mode set to 100644
File size: 1.2 KB
Line 
1package com.example.villadihovo.web.controller.ControllersForAllReservations;
2
3import com.example.villadihovo.dto.ReservationForFoodDto;
4import com.example.villadihovo.service.reservation.ReservationForPreparedMealService;
5import lombok.AllArgsConstructor;
6import org.springframework.beans.factory.annotation.Autowired;
7import org.springframework.stereotype.Controller;
8import org.springframework.ui.Model;
9import org.springframework.web.bind.annotation.GetMapping;
10import org.springframework.web.bind.annotation.RequestMapping;
11import org.springframework.web.bind.annotation.RestController;
12import org.springframework.web.servlet.ModelAndView;
13
14import java.util.List;
15
16@Controller
17@AllArgsConstructor
18@RequestMapping("/reservations/food")
19public class FoodReservationsController {
20
21 @Autowired
22 private ReservationForPreparedMealService reservationForPreparedMealService;
23
24 @GetMapping
25 public String listAllPreparedMealReservations(Model model){
26 List<ReservationForFoodDto> allFoodReservations = this.reservationForPreparedMealService.findAllFoodReservations();
27 model.addAttribute("foodReservations", allFoodReservations);
28 return "food-reservations";
29 }
30}
Note: See TracBrowser for help on using the repository browser.