Skip to content

Instantly share code, notes, and snippets.

@phstc
Created December 9, 2010 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phstc/734690 to your computer and use it in GitHub Desktop.
Save phstc/734690 to your computer and use it in GitHub Desktop.
public interface Dao {}
public class JpaDao implements Dao {}
public class ProductService {
private Dao dao;
public ProductService(Dao dao){
this.dao = dao;
}
}
new ProductService(new JpaDao());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment