Last change
on this file since 11d7b36 was 73f0dbc, checked in by DenicaKj <dkorvezir@…>, 21 months ago |
added rating
|
-
Property mode
set to
100644
|
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.