コード例 #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="logger"></param>
 /// <param name="webNewsElastic"></param>
 /// <param name="webNewsRedis"></param>
 public ProblemController(ILogger <SiteController> logger,
                          ISystemDictionaryRepository systemDictionaryRepository,
                          IMemberProblemRepository memberProblemRepository)
 {
     this._ILogger = logger;
     this._ISystemDictionaryRepository = systemDictionaryRepository;
     this._IMemberProblemRepository    = memberProblemRepository;
 }
コード例 #2
0
 public TaskController(ILogger <SiteController> logger,
                       IRedisStore redisStore,
                       ISystemDictionaryRepository systemDictionaryRepository,
                       ITaskInfoRepository taskInfoRepository,
                       ITaskDetailsRepository taskDetailsRepository,
                       IMemberIncomeRepository memberIncomeRepository,
                       ITaskNoviceLogRepository taskNoviceLogRepository,
                       ITaskInfoApp taskInfoApp)
 {
     this._ILogger     = logger;
     this._IRedisStore = redisStore;
     this._ISystemDictionaryRepository = systemDictionaryRepository;
     this._ITaskInfoApp             = taskInfoApp;
     this._ITaskInfoRepository      = taskInfoRepository;
     this._ITaskDetailsRepository   = taskDetailsRepository;
     this._ITaskNoviceLogRepository = taskNoviceLogRepository;
     this._IMemberIncomeRepository  = memberIncomeRepository;
 }
コード例 #3
0
 public SystemDictionaryLogic(ISystemDictionaryRepository systemDictionaryRepository) : base(systemDictionaryRepository)
 {
     _systemDictionaryRepository = systemDictionaryRepository;
 }
コード例 #4
0
 public SystemDictionaryLogic(IRepository <SystemDictionary, Guid> repository, ISystemDictionaryRepository systemDictionaryRepository) : base(repository)
 {
     this._systemDictionaryRepository = systemDictionaryRepository;
 }
コード例 #5
0
 public SystemDictionaryLogic(ISystemDictionaryRepository dictionaryRepository)
     : base(dictionaryRepository)
 {
     _dictionaryRepository = dictionaryRepository;
 }
コード例 #6
0
 public DictionaryController(ILogger <CommentController> logger,
                             ISystemDictionaryRepository systemDictionaryRepository)
 {
     this._ILogger = logger;
     this._ISystemDictionaryRepository = systemDictionaryRepository;
 }
コード例 #7
0
 public SystemDictionaryService(ISystemDictionaryRepository systemDictionaryRepository)
 {
     this._systemDictionaryRepository = systemDictionaryRepository;
 }