Beispiel #1
0
 public ComplaintController(IAfterCheckService afterCheckService, IComplaintMZLService complaintMZLService, IMapper mapper, IRedisDbContext redisDbContext)
 {
     _afterCheckService   = afterCheckService;
     _complaintMZLService = complaintMZLService;
     _mapper         = mapper;
     _redisDbContext = redisDbContext;
 }
 public CheckComplaintController(IAfterCheckService afterCheckService, ISupervisionInfoService supervisionInfoService, IHosDayErrorService hosdayerrorservice, IMapper mapper, IRedisDbContext redisDbContext)
 {
     _afterCheckService      = afterCheckService;
     _mapper                 = mapper;
     _redisDbContext         = redisDbContext;
     _supervisionInfoService = supervisionInfoService;
     _hosdayerrorservice     = hosdayerrorservice;
 }
Beispiel #3
0
 public RedisDbBinaryRepository
 (
     IRedisDbContext redisDbContext,
     IBinarySerializer binarySerializer
 )
 {
     _redisDbContext   = redisDbContext ?? throw new ArgumentNullException(nameof(redisDbContext));
     _binarySerializer = binarySerializer ?? throw new ArgumentNullException(nameof(binarySerializer));
 }
Beispiel #4
0
 public RedisDbJsonRepository(
     IRedisDbContext redisDbContext)
 {
     _redisDbContext = redisDbContext ?? throw new ArgumentNullException(nameof(redisDbContext));
 }
Beispiel #5
0
 public ImageEventsController(IRedisDbContext redisDb)
 {
     //_repository = repository;
     _redisDb = redisDb;
 }
 public HosDayErrorService(IXYDbContext dbContext, IRedisDbContext redisDbContext)
 {
     _dbContext      = dbContext;
     _redisDbContext = redisDbContext;
 }
Beispiel #7
0
 public DecisionAnalysisController(IDecisionAnalysisService decisionAnalysisService, IMapper mapper, IRedisDbContext redisDbContext)
 {
     _decisionAnalysisService = decisionAnalysisService;
     _mapper         = mapper;
     _redisDbContext = redisDbContext;
 }
 public RoleService(IXYDbContext dbContext, IRedisDbContext redisDbContext)
 {
     _dbContext      = dbContext;
     _redisDbContext = redisDbContext;
 }
Beispiel #9
0
 public BeforeSynthesisService(IXYDbContext dbContext, IRedisDbContext redisDbContext)
 {
     _dbContext      = dbContext;
     _redisDbContext = redisDbContext;
 }
 public SupervisionInfoController(ISupervisionInfoService supervisionInfoService, IMapper mapper, IRedisDbContext redisDbContext)
 {
     _supervisionInfoService = supervisionInfoService;
     _mapper         = mapper;
     _redisDbContext = redisDbContext;
 }
 public HealthCareCheckResultService(IXYDbContext dbContext, IRedisDbContext redisDbContext)
 {
     _dbContext      = dbContext;
     _redisDbContext = redisDbContext;
 }
 public HealthCareCheckResultController(IHealthCareCheckResultService healthCareCheckResultService, IRedisDbContext redisDbContext)
 {
     _healthCareCheckResultService = healthCareCheckResultService;
     _redisDbContext = redisDbContext;
 }
 public DecisionAnalysisService(IXYDbContext dbContext, IRedisDbContext redisDbContext)
 {
     _dbContext      = dbContext;
     _redisDbContext = redisDbContext;
 }