Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package es.ifp.cajero.restjpa.modelo.service;
- import java.util.List;
- import es.ifp.modelo.beans.Cuenta;
- public interface IntCuentaService {
- Cuenta findById(int idCuenta);
- List<Cuenta> findAll();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement