Example #1
0
 public HomeController(IRepositoryOfTopics repository)
 {
     _repository = repository;
 }
Example #2
0
 public TopicController(IRepositoryOfTopics topicRepo, IRepositoryOfMessages msgRepo, UserManager <IdentityUser> userManager)
 {
     _topicRepo   = topicRepo;
     _msgRepo     = msgRepo;
     _userManager = userManager;
 }