⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icustomerservice.java

📁 网上书店源码。功能全面
💻 JAVA
字号:
/**
 * 
 */
package com.ascent.business;

import java.util.List;

import com.ascent.bean.Customer;

public interface ICustomerService {
	
	/**
	 * 
	 * @param Customer
	 * @return Customer
	 */
	public Customer saveCustomer(Customer customer);

	/**
	 * 
	 * @param id Integer
	 *            
	 * @return Customer
	 */
	public Customer getCustomer(int id);

	/**
	 * 
	 * @return List
	 */
	public List findCustomerAll();

	/**
	 * 
	 * @param type String
	 *            
	 * @return List
	 */
	public List findCustomerByName(String name);

	/**
	 * 
	 * @param Customer
	 *   
	 */
	public void removeCustomer(Customer customer);


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -