source: src/main/java/com/example/moviezone/service/CustomerIsInterestedInEventService.java@ 8a18cf5

Last change on this file since 8a18cf5 was ef84238, checked in by DenicaKj <dkorvezir@…>, 21 months ago

Interested in event

  • Property mode set to 100644
File size: 514 bytes
Line 
1package com.example.moviezone.service;
2
3import com.example.moviezone.model.Customer;
4import com.example.moviezone.model.Event;
5import com.example.moviezone.model.manytomany.CustomerIsInterestedInEvent;
6
7import javax.persistence.criteria.CriteriaBuilder;
8
9public interface CustomerIsInterestedInEventService {
10 CustomerIsInterestedInEvent add(Integer id_customer,Integer id_event);
11 void delete(Customer customer, Event event);
12 CustomerIsInterestedInEvent findByCustomerAndEvent(Customer customer, Event event);
13}
Note: See TracBrowser for help on using the repository browser.