Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package daos;
  2.  
  3.  import repositories.Repository;
  4.  
  5. /**
  6.  *
  7.  * @author mga
  8.  */
  9. public interface DAOInterface {
  10.  
  11.  public Repository load(String filename);
  12.  public void store(String filename, Repository repository);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement