public CreateCommentCommandHandler(IArticlesContext context)
 {
     _context = context;
 }
 public GetCommentByIdAndArticleIdQueryHandler(IArticlesContext context)
 {
     _context = context;
 }
 public DeleteArticleCommandHandler(IArticlesContext context)
 {
     _context = context;
 }
 public GetArticlesByHashTagQueryHandler(IArticlesContext context)
 {
     _context = context;
 }
 public SaveChangesCommandPostProcessor(IArticlesContext context)
 {
     _context = context;
 }
 public GetArticleByIdQueryHandler(IArticlesContext context)
 {
     _context = context;
 }