コード例 #1
0
 public DashboardController(IUserInfoBll userInfoBll, IPostBll postBll, ICommentBll commentBll, ILeaveMessageBll leaveMessageBll)
 {
     UserInfoBll     = userInfoBll;
     CommentBll      = commentBll;
     LeaveMessageBll = leaveMessageBll;
     PostBll         = postBll;
 }
コード例 #2
0
 public HomeController(IPostBll postBll, ICommentBll commentBll, ICategoryBll categoryBll, ISearchDetailsBll searchDetailsBll, INoticeBll noticeBll, IPostAccessRecordBll postAccessRecordBll)
 {
     CategoryBll         = categoryBll;
     PostBll             = postBll;
     CommentBll          = commentBll;
     SearchDetailsBll    = searchDetailsBll;
     NoticeBll           = noticeBll;
     PostAccessRecordBll = postAccessRecordBll;
 }
コード例 #3
0
ファイル: PostController.cs プロジェクト: plu2/Masuit.MyBlogs
 public PostController(IPostBll postBll, ICategoryBll categoryBll, IBroadcastBll broadcastBll, ISeminarBll seminarBll, IPostAccessRecordBll postAccessRecordBll, ICommentBll commentBll, IPostHistoryVersionBll postHistoryVersionBll)
 {
     PostBll               = postBll;
     CategoryBll           = categoryBll;
     BroadcastBll          = broadcastBll;
     SeminarBll            = seminarBll;
     PostAccessRecordBll   = postAccessRecordBll;
     CommentBll            = commentBll;
     PostHistoryVersionBll = postHistoryVersionBll;
 }
コード例 #4
0
 public CommentController(ICommentBll commentBll, IPostBll postBll, IInternalMessageBll messageBll)
 {
     CommentBll = commentBll;
     PostBll    = postBll;
     MessageBll = messageBll;
 }