Ignore:
Timestamp:
04/28/25 14:21:17 (3 weeks ago)
Author:
Aleksandar Panovski <apano77@…>
Branches:
main
Children:
e15e8d9
Parents:
f5b256e
Message:

Big change done fully handle_reservation_update() trigger works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/rezevirajmasa/demo/service/TableService.java

    rf5b256e rdeea3c4  
    11package com.example.rezevirajmasa.demo.service;
    22
     3import com.example.rezevirajmasa.demo.dto.TableDTO;
    34import com.example.rezevirajmasa.demo.model.Restaurant;
    45import com.example.rezevirajmasa.demo.model.TableEntity;
     
    1213public interface TableService {
    1314    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);
    1618    void deleteTimeSlotsForReservation(Long tableId, LocalDateTime reservationTime);
    1719    void canceledTimeSlots(Long tableId, LocalDateTime reservationTime);
Note: See TracChangeset for help on using the changeset viewer.