Last change
on this file was ef84238, checked in by DenicaKj <dkorvezir@…>, 21 months ago |
Interested in event
|
-
Property mode
set to
100644
|
File size:
514 bytes
|
Rev | Line | |
---|
[ef84238] | 1 | package com.example.moviezone.service;
|
---|
| 2 |
|
---|
| 3 | import com.example.moviezone.model.Customer;
|
---|
| 4 | import com.example.moviezone.model.Event;
|
---|
| 5 | import com.example.moviezone.model.manytomany.CustomerIsInterestedInEvent;
|
---|
| 6 |
|
---|
| 7 | import javax.persistence.criteria.CriteriaBuilder;
|
---|
| 8 |
|
---|
| 9 | public 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.