- Timestamp:
- 04/28/25 14:21:17 (3 weeks ago)
- Branches:
- main
- Children:
- e15e8d9
- Parents:
- f5b256e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/rezevirajmasa/demo/service/TableService.java
rf5b256e rdeea3c4 1 1 package com.example.rezevirajmasa.demo.service; 2 2 3 import com.example.rezevirajmasa.demo.dto.TableDTO; 3 4 import com.example.rezevirajmasa.demo.model.Restaurant; 4 5 import com.example.rezevirajmasa.demo.model.TableEntity; … … 12 13 public interface TableService { 13 14 List<TableEntity> listall(); 14 TableEntity findById(Long id); 15 // void save(int numberOfTables, List<Integer> tableCapacities, List<String> tableLocations, List<String> tableSmokingAreas, List<String> tableDescriptions, Restaurant restaurant); 15 TableDTO findById(Long id); 16 TableEntity findByIdTable(Long id); 17 void save(int numberOfTables, List<Integer> tableCapacities, List<String> tableLocations, List<String> tableSmokingAreas, List<String> tableDescriptions, Restaurant restaurant); 16 18 void deleteTimeSlotsForReservation(Long tableId, LocalDateTime reservationTime); 17 19 void canceledTimeSlots(Long tableId, LocalDateTime reservationTime);
Note:
See TracChangeset
for help on using the changeset viewer.