package com.rshk.demo.services; import java.util.List; import com.rshk.demo.beans.Customer; import com.rshk.demo.beans.CustomerGetRespData; import com.rshk.demo.beans.CustomerListData; import com.rshk.demo.beans.SaveCustomerRespData; public interface CustomerService { SaveCustomerRespData insert(Customer customer) throws Exception; CustomerGetRespData get(String document) throws Exception; CustomerListData getCustomers() throws Exception; }