Uses of Record Class
edu.ntnu.idatt2106_2023_06.backend.dto.fridge.FridgeLoadAllDTO
Packages that use FridgeLoadAllDTO
Package
Description
-
Uses of FridgeLoadAllDTO in edu.ntnu.idatt2106_2023_06.backend.controller
Methods in edu.ntnu.idatt2106_2023_06.backend.controller that return types with arguments of type FridgeLoadAllDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<FridgeLoadAllDTO>
FridgeController.loadFridgesByUser
(String username) This endpoint retrieves all the fridges for a given user. -
Uses of FridgeLoadAllDTO in edu.ntnu.idatt2106_2023_06.backend.mapper
Methods in edu.ntnu.idatt2106_2023_06.backend.mapper that return FridgeLoadAllDTOModifier and TypeMethodDescriptionstatic FridgeLoadAllDTO
FridgeMapper.toFridgeLoadAllDTO
(List<Fridge> fridgeList) This method converts a list of fridges to fridgeLoadDTO. -
Uses of FridgeLoadAllDTO in edu.ntnu.idatt2106_2023_06.backend.service.fridge
Methods in edu.ntnu.idatt2106_2023_06.backend.service.fridge that return FridgeLoadAllDTOModifier and TypeMethodDescriptionFridgeService.retrieveFridgesByUsername
(String username) This method retrieves all the fridge ids for a given user.