コード例 #1
0
 public HangfireBackJob(IInterviewBll bll, ISystemSettingBll systemSettingBll, IUserInfoBll userInfoBll, IPostBll postBll)
 {
     InterviewBll     = bll;
     SystemSettingBll = systemSettingBll;
     UserInfoBll      = userInfoBll;
     PostBll          = postBll;
 }
コード例 #2
0
 public DashboardController(IUserInfoBll userInfoBll, IPostBll postBll, ICommentBll commentBll, ILeaveMessageBll leaveMessageBll)
 {
     UserInfoBll     = userInfoBll;
     CommentBll      = commentBll;
     LeaveMessageBll = leaveMessageBll;
     PostBll         = postBll;
 }
コード例 #3
0
 public HangfireBackJob(ISystemSettingBll systemSettingBll, IUserInfoBll userInfoBll, IPostBll postBll, RedisHelper redisHelper)
 {
     //InterviewBll = bll;
     SystemSettingBll = systemSettingBll;
     UserInfoBll      = userInfoBll;
     PostBll          = postBll;
     RedisHelper      = redisHelper;
 }
コード例 #4
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;
 }
コード例 #5
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;
 }
コード例 #6
0
 public CategoryController(ICategoryBll categoryBll, IPostBll postBll)
 {
     CategoryBll = categoryBll;
     _postBll    = postBll;
 }
コード例 #7
0
 public CommentController(ICommentBll commentBll, IPostBll postBll, IInternalMessageBll messageBll)
 {
     CommentBll = commentBll;
     PostBll    = postBll;
     MessageBll = messageBll;
 }
コード例 #8
0
 public SubscribeController(IBroadcastBll broadcastBll, IPostBll postBll)
 {
     BroadcastBll = broadcastBll;
     PostBll      = postBll;
 }
コード例 #9
0
 public PublicController(IPostBll postBll)
 {
     PostBll = postBll;
 }
コード例 #10
0
 public SeminarController(ISeminarBll seminarBll, IPostBll postBll)
 {
     SeminarBll = seminarBll;
     PostBll    = postBll;
 }