source:
src/main/java/com/example/moviezone/service/CategoryService.java
Last change on this file was 00fa72f, checked in by , 21 months ago | |
---|---|
|
|
File size: 262 bytes |
Line | |
---|---|
1 | package com.example.moviezone.service; |
2 | |
3 | import com.example.moviezone.model.Category; |
4 | |
5 | import java.util.List; |
6 | import java.util.Optional; |
7 | |
8 | public interface CategoryService { |
9 | List<Category> findAllCategories(); |
10 | Optional<Category> getCategoryById(int id); |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.