1 7 package org.jfox.petstore.bo; 8 9 import java.util.List ; 10 11 import org.jfox.petstore.entity.Account; 12 13 16 public interface AccountBO { 17 Account getAccount(String username); 18 19 Account getAccount(String username, String password); 20 21 void updateAccount(Account account); 22 23 void insertAccount(Account account); 24 25 List <String > getUsernameList(); 26 } 27 | Popular Tags |