コード例 #1
0
ファイル: TopicsController.cs プロジェクト: k0ma/LHelper
 public TopicsController(IForumTopicService topic, IForumReplayService replies)
 {
     this.topic   = topic;
     this.replies = replies;
 }
コード例 #2
0
 public RepliesController(IHtmlService html, UserManager <User> userManager, IForumReplayService replay)
 {
     this.html        = html;
     this.userManager = userManager;
     this.replay      = replay;
 }