source:
src/main/java/com/example/moviezone/service/CustomerRatesFilmService.java
Last change on this file was 73f0dbc, checked in by , 21 months ago | |
---|---|
|
|
File size: 315 bytes |
Line | |
---|---|
1 | package com.example.moviezone.service; |
2 | |
3 | import com.example.moviezone.model.Customer; |
4 | import com.example.moviezone.model.manytomany.CustomerRatesFilm; |
5 | |
6 | public interface CustomerRatesFilmService { |
7 | double avg_rating(int id); |
8 | CustomerRatesFilm addRating(Integer id_customer, Integer id_film, double rating); |
9 | |
10 | } |
Note:
See TracBrowser
for help on using the repository browser.