public CheckComplaintController(IAfterCheckService afterCheckService, ISupervisionInfoService supervisionInfoService, IHosDayErrorService hosdayerrorservice, IMapper mapper, IRedisDbContext redisDbContext)
 {
     _afterCheckService      = afterCheckService;
     _mapper                 = mapper;
     _redisDbContext         = redisDbContext;
     _supervisionInfoService = supervisionInfoService;
     _hosdayerrorservice     = hosdayerrorservice;
 }
Esempio n. 2
0
 public HosDayErrorController(IHosDayErrorService hosdayerrorservice, IMapper mapper)
 {
     _hosdayerrorservice = hosdayerrorservice;
     _mapper             = mapper;
 }