Skip to content

Instantly share code, notes, and snippets.

@thangchung
Last active October 16, 2017 08:42
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 thangchung/68bd993f0f2514bac904ae330f462e7c to your computer and use it in GitHub Desktop.
Save thangchung/68bd993f0f2514bac904ae330f462e7c to your computer and use it in GitHub Desktop.
Applying clean architecture on web application with modular patterns
public class BlogEfRepository<TEntity> : EfRepository<PostDbContext, TEntity>
where TEntity : EntityBase
{
public BlogEfRepository(PostDbContext dbContext)
: base(dbContext)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment