CustomerService.java 236 Bytes
Newer Older
jorgecacs committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.rshk.demo.services;

import java.util.List;

import com.rshk.demo.beans.Customer;

public interface CustomerService {
	
	void insert(Customer customer);
	
	Customer get(String document);
	
	List<Customer> getCustomers();

}