public TopicsController(YeniBlogDbContext context)
 {
     _context        = context;
     topicRepository = new TopicRep(context);
     articleRep      = new ArticleRep(context);
     userRep         = new UserRep(context);
 }
 public TopicListViewComponent(YeniBlogDbContext context)
 {
     _context = context;
     topicRep = new TopicRep(context);
 }
 public SelectTopicsViewComponent(YeniBlogDbContext context)
 {
     _context = context;
     topicRep = new TopicRep(context);
 }