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 ComplaintMZLController(IComplaintMZLService complaintMZLService, IAfterCheckService afterCheckService)
 {
     _afterCheckService  = afterCheckService;
     _complaintMZService = complaintMZLService;
 }
 public BeforeCheckEngineController(IBeforeCheckEngineService beforeCheckEngineService, IAfterCheckService afterCheckService)
 {
     _ibeforeCheckEngineService = beforeCheckEngineService;
     _afterCheckService         = afterCheckService;
 }
 public ComplaintStatisticalController(IAfterCheckService afterCheckService, IComplaintStatisticalService complaintStatisticalService)
 {
     _afterCheckService           = afterCheckService;
     _complaintStatisticalService = complaintStatisticalService;
 }
 public BeforeSynthesisController(IBeforeSynthesisService beforesysthesisService, IMapper mapper, IAfterCheckService afterCheckService)
 {
     _beforesynthesisService = beforesysthesisService;
     _afterCheckService      = afterCheckService;
     _mapper = mapper;
 }