/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package netukar.piggybank.ejb.session; import javax.ejb.Local; import netukar.piggybank.ejb.entity.Account; import netukar.piggybank.ejb.entity.Client; /** * * @author Radovan Netuka */ @Local public interface BankConsultantLocal { public void register(Client client); public Client getClient(int id); public Account getAccount(int id); }