Beispiel #1
0
 public TopicsController(IForumTopicService topic, IForumReplayService replies)
 {
     this.topic   = topic;
     this.replies = replies;
 }
Beispiel #2
0
 public RepliesController(IHtmlService html, UserManager <User> userManager, IForumReplayService replay)
 {
     this.html        = html;
     this.userManager = userManager;
     this.replay      = replay;
 }