Last change
on this file since f60cb20 was 11dea8f, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
service impl classes
|
-
Property mode
set to
100644
|
File size:
426 bytes
|
Line | |
---|
1 | package com.example.moviezone.service.Impl;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.User;
|
---|
4 | import com.example.moviezone.service.UserService;
|
---|
5 | import org.springframework.stereotype.Service;
|
---|
6 |
|
---|
7 | import java.util.List;
|
---|
8 |
|
---|
9 | @Service
|
---|
10 | public class UserServiceImpl implements UserService {
|
---|
11 |
|
---|
12 |
|
---|
13 | @Override
|
---|
14 | public List<User> findAllUsers() {
|
---|
15 | return null;
|
---|
16 | }
|
---|
17 |
|
---|
18 | @Override
|
---|
19 | public User findById() {
|
---|
20 | return null;
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.