iproductbusiness.java

来自「电子商务网站源码.还是一个不错的网站」· Java 代码 · 共 15 行

JAVA
15
字号
package cn.com.tarena.business;

import java.util.List;
import java.util.Map;

import cn.com.tarena.bean.Product;
import cn.com.tarena.util.BusinessException;

public interface IProductBusiness {
	//	列出所有产品
	Map listAllProducts()throws BusinessException;
	//通过产品id得到一个产品
	Product getProductByProductid(Integer productid)throws BusinessException;
}

⌨️ 快捷键说明

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