icustomerservice.java

来自「一个J2EE 做的 网上图书销售管理系统」· Java 代码 · 共 11 行

JAVA
11
字号
package com.briup.service;

import com.briup.bean.RegisterForm;
import com.briup.common.exception.CustomerServiceException;

public interface ICustomerService {
	void register(RegisterForm customer) throws CustomerServiceException; 
	RegisterForm login(String name,String password) throws CustomerServiceException;
	void update(RegisterForm customer) throws CustomerServiceException; 
}

⌨️ 快捷键说明

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