public PostRepository(MWContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <Post>();
 }
Exemple #2
0
 public AlbumRepository(MWContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <Album>();
 }