Last change
on this file since cc88ec2 was 00fa72f, checked in by DenicaKj <dkorvezir@…>, 22 months ago |
Reservation Implemented
|
-
Property mode
set to
100644
|
File size:
804 bytes
|
Line | |
---|
1 | package com.example.moviezone.service.Impl;
|
---|
2 |
|
---|
3 | import com.example.moviezone.model.Customer;
|
---|
4 | import com.example.moviezone.repository.CustomerRepository;
|
---|
5 | import com.example.moviezone.service.CustomerService;
|
---|
6 | import org.springframework.stereotype.Service;
|
---|
7 |
|
---|
8 | import java.util.List;
|
---|
9 | import java.util.Optional;
|
---|
10 |
|
---|
11 | @Service
|
---|
12 | public class CustomerServiceImpl implements CustomerService {
|
---|
13 | private final CustomerRepository customerRepository;
|
---|
14 |
|
---|
15 | public CustomerServiceImpl(CustomerRepository customerRepository) {
|
---|
16 | this.customerRepository = customerRepository;
|
---|
17 | }
|
---|
18 |
|
---|
19 | @Override
|
---|
20 | public List<Customer> findAllCustomers() {
|
---|
21 | return customerRepository.findAll();
|
---|
22 | }
|
---|
23 |
|
---|
24 | @Override
|
---|
25 | public Optional<Customer> getCustomerById(int id) {
|
---|
26 | return customerRepository.findById(id);
|
---|
27 | }
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.