Skip to content

Instantly share code, notes, and snippets.

@sohangp
Created May 16, 2019 01:03
Show Gist options
  • Save sohangp/c1c96aedc8fe7a7b536fa2e0d78f3979 to your computer and use it in GitHub Desktop.
Save sohangp/c1c96aedc8fe7a7b536fa2e0d78f3979 to your computer and use it in GitHub Desktop.
Service Layer
@Service
public class CustomerServiceImpl implements CustomerService {
@Autowired
private CustomerRepository customerRepository;
public List<CustomerDetailsDTO> getCustomersAndOrderData() throws Exception {
return customerRepository.getCustomerDetails();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment