CustomerServiceImpl.java 492 Bytes
Newer Older
jorgecacs committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
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<Customer> getCustomers() {
		// TODO Auto-generated method stub
		return null;
	}

}