public CommentRepository(RunningBlogDbContext context) { this.runningBlogDbContext = context; }
public PostRepository(RunningBlogDbContext context) { runningBlogDbContext = context; }
public CategoryRepository(RunningBlogDbContext context) { this.runningBlogDbContext = context; }
public PostCategoryRepository(RunningBlogDbContext runningBlogDbContext) { this.runningBlogDbContext = runningBlogDbContext; }