package com.rshk.demo.services; import java.util.List; import org.springframework.stereotype.Service; import com.rshk.demo.beans.Customer; @Service public class CustomerServiceImpl implements CustomerService { public void insert(Customer customer) { // TODO Auto-generated method stub } public Customer get(String document) { // TODO Auto-generated method stub return null; } public List getCustomers() { // TODO Auto-generated method stub return null; } }