www.pudn.com > ssh1.rar > IAccountService.java


/** 
 *  
 */ 
package com.tarena.service; 
 
import java.util.List; 
 
/** 
 * @author dong xuyuan 
 * 
 */ 
public interface IAccountService { 
	 
	public void registerAccount(String username, String password, String desc); 
	 
	public List queryAccounts(String username); 
 
}