public DashboardController(IUserInfoBll userInfoBll, IPostBll postBll, ICommentBll commentBll, ILeaveMessageBll leaveMessageBll) { UserInfoBll = userInfoBll; CommentBll = commentBll; LeaveMessageBll = leaveMessageBll; PostBll = postBll; }
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; }
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; }
public CommentController(ICommentBll commentBll, IPostBll postBll, IInternalMessageBll messageBll) { CommentBll = commentBll; PostBll = postBll; MessageBll = messageBll; }