package bankAccount;

public interface Account
{
   public String getFirstName();
   public String getLastName();
   public void deposit(Deposit d);
   public double getCurrentBalance();
   public double getPendingBalance();
   public void withdraw(double amount) throws InsufficientFundsException;
}
