Skip to content

Instantly share code, notes, and snippets.

@jfromaniello
Created November 24, 2009 17:17
Show Gist options
  • Save jfromaniello/242037 to your computer and use it in GitHub Desktop.
Save jfromaniello/242037 to your computer and use it in GitHub Desktop.
public interface IDaoFactory
{
IDaoReadOnly<TEntity> GetDaoReadOnlyOf<TEntity>();
IDao<TEntity> GetDaoOf<TEntity>();
TDao GetSpecializedDao<TDao, TEntity>() where TDao : class, IDao<TEntity>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment