Merge branch 'master' of ssh://xp-dev.com/RRRRHHHH_Code
[RRRRHHHH_Code] / ruralHouses / src / common / AccountInterface.java
index 07f8ced..aee131c 100644 (file)
@@ -2,12 +2,11 @@ package common;
 
 import java.rmi.Remote;
 import java.rmi.RemoteException;
-import domain.Account;
 
 public interface AccountInterface extends Remote{
        
 
-       public boolean addAccount(Account ac) throws RemoteException;
+       public boolean addAccount(int index) throws RemoteException;
        
-       public boolean removeAccount(Account ac) throws RemoteException;
+       public boolean removeAccount(int index) throws RemoteException;
 }