Ignore:
Timestamp:
05/06/25 00:44:02 (2 weeks ago)
Author:
Aleksandar Panovski <apano77@…>
Branches:
main
Children:
e48199a
Parents:
142c0f8
Message:

Normalization needed to continue, till here done

Location:
src/main/java/com/example/rezevirajmasa/demo/repository
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/rezevirajmasa/demo/repository/ReservationHistoryRepository.java

    r142c0f8 rb67dfd3  
    11package com.example.rezevirajmasa.demo.repository;
    22
    3 import com.example.rezevirajmasa.demo.model.Customer;
    4 import com.example.rezevirajmasa.demo.model.Reservation;
    53import com.example.rezevirajmasa.demo.model.Restaurant;
    64import com.example.rezevirajmasa.demo.model.User;
    7 import org.springframework.cglib.core.Local;
    85import org.springframework.data.jpa.repository.JpaRepository;
    96
     
    1310public interface ReservationHistoryRepository extends JpaRepository<Restaurant.ReservationHistory, Long> {
    1411    List<Restaurant.ReservationHistory> findALlByUser(User user);
    15     List<Restaurant.ReservationHistory> findByCheckInDateBeforeAndStatus(LocalDateTime currentTime, String scheduled);
    1612    List<Restaurant.ReservationHistory> findAllByCheckInDateBefore(LocalDateTime currentTime);
    1713}
Note: See TracChangeset for help on using the changeset viewer.