Example #1
0
 public CommentRepository(RunningBlogDbContext context)
 {
     this.runningBlogDbContext = context;
 }
Example #2
0
 public PostRepository(RunningBlogDbContext context)
 {
     runningBlogDbContext = context;
 }
Example #3
0
 public CategoryRepository(RunningBlogDbContext context)
 {
     this.runningBlogDbContext = context;
 }
Example #4
0
 public PostCategoryRepository(RunningBlogDbContext runningBlogDbContext)
 {
     this.runningBlogDbContext = runningBlogDbContext;
 }