Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public interface PersonaDAO {
  2.     void save(Persona persona);
  3.     List<Persona> getAll();
  4.  
  5. }