source: source/src/main/java/com/example/db/service/OnlineStoresService.java@ bc0eeb4

Last change on this file since bc0eeb4 was bc0eeb4, checked in by Evgenija2000 <eva_nikolaevska@…>, 21 months ago

all files

  • Property mode set to 100644
File size: 358 bytes
Line 
1package com.example.db.service;
2
3import com.example.db.model.OnlineStores;
4
5import java.util.List;
6import java.util.Optional;
7
8public interface OnlineStoresService {
9 OnlineStores findByStoreId(Integer id);
10 List<OnlineStores> findBySocialMedia(String socialMedia);
11 List<OnlineStores> findByNames(String names);
12 List<OnlineStores> listAll();
13}
Note: See TracBrowser for help on using the repository browser.