강의노트/Spring

[service]IUserService.java

티케y 2013. 9. 4. 11:55

public interface IUserService {

public UserInfo findUserInfo(UserInfo user) throws SQLException;

public UserInfo insertUserInfo(UserInfo user) throws SQLException;

public int updateUserInfo(UserInfo user) throws SQLException;

public int deleteUserInfo(UserInfo user) throws SQLException;

}