CustomerService.java 455 Bytes
Newer Older
jorgecacs committed
1 2 3 4 5
package com.rshk.demo.services;

import java.util.List;

import com.rshk.demo.beans.Customer;
jorgecacs committed
6 7 8
import com.rshk.demo.beans.CustomerGetRespData;
import com.rshk.demo.beans.CustomerListData;
import com.rshk.demo.beans.SaveCustomerRespData;
jorgecacs committed
9 10

public interface CustomerService {
jorgecacs committed
11 12 13 14 15 16

	SaveCustomerRespData insert(Customer customer) throws Exception;

	CustomerGetRespData get(String document) throws Exception;

	CustomerListData getCustomers() throws Exception;
jorgecacs committed
17 18

}