Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. package com.example.demo.service;
  2.  
  3. import com.example.demo.entities.Customer;
  4.  
  5. import java.util.ArrayList;
  6. import java.util.List;
  7.  
  8. public class CustomerService {
  9.  
  10. public List<Customer> getAllCustomers() {
  11. return new ArrayList<>();
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement