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