public ForumReplyController(
     IForumThreadService threadService,
     IForumReplyService replyService,
     UserManager <ApplicationUser> userManager)
 {
     this.threadService = threadService;
     this.replyService  = replyService;
     this.userManager   = userManager;
 }
Exemplo n.º 2
0
 public AdminController(
     INewsService newsService,
     IForumReplyService replyService,
     IForumThreadService threadService,
     IVideosService videosService)
 {
     this.newsService   = newsService;
     this.replyService  = replyService;
     this.threadService = threadService;
     this.videosService = videosService;
 }