Merge conflicts solutioned
[RRRRHHHH_Code] / ruralHouses / src / common / AccountInterface.java
1 package common;
2
3 import java.rmi.Remote;
4 import java.rmi.RemoteException;
5 import domain.Account;
6
7 public interface AccountInterface extends Remote{
8         
9
10         public boolean addAccount(Account ac) throws RemoteException;
11         
12         public boolean removeAccount(Account ac) throws RemoteException;
13 }