示例#1
0
 public SystemController(IUserInfoBll userInfoBll, ISystemSettingBll systemSettingBll, RedisHelper redisHelper, IInterviewBll interviewBll)
 {
     UserInfoBll      = userInfoBll;
     SystemSettingBll = systemSettingBll;
     RedisHelper      = redisHelper;
     InterviewBll     = interviewBll;
 }
示例#2
0
 public HangfireBackJob(IInterviewBll bll, ISystemSettingBll systemSettingBll, IUserInfoBll userInfoBll, IPostBll postBll)
 {
     InterviewBll     = bll;
     SystemSettingBll = systemSettingBll;
     UserInfoBll      = userInfoBll;
     PostBll          = postBll;
 }
 public HangfireBackJob(ISystemSettingBll systemSettingBll, IUserInfoBll userInfoBll, IPostBll postBll, RedisHelper redisHelper)
 {
     //InterviewBll = bll;
     SystemSettingBll = systemSettingBll;
     UserInfoBll      = userInfoBll;
     PostBll          = postBll;
     RedisHelper      = redisHelper;
 }
 public SystemController(IUserInfoBll userInfoBll, ISystemSettingBll systemSettingBll)
 {
     UserInfoBll      = userInfoBll;
     SystemSettingBll = systemSettingBll;
 }
示例#5
0
 //public IInterviewBll InterviewBll { get; set; }
 public SystemController(IUserInfoBll userInfoBll, ISystemSettingBll systemSettingBll, RedisHelper redisHelper)
 {
     UserInfoBll      = userInfoBll;
     SystemSettingBll = systemSettingBll;
     RedisHelper      = redisHelper;
 }