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