Ejemplo n.º 1
0
 public TimeOutHandler(IMapper mapper
     , IPushTokenBrandService pushTokenBrandService
     , ISendProcessLogic sendProcessLogic
     , IPushSendProcessService pushSendProcessService
      , IPushProcessHistoryService pushProcessHistoryService
     )
 {
     _mapper = mapper;
     _pushTokenBrandService = pushTokenBrandService;
     _sendProcessLogic = sendProcessLogic;
     _pushSendProcessService = pushSendProcessService;
     _pushProcessHistoryService = pushProcessHistoryService;
 }
Ejemplo n.º 2
0
 public SendProcessLogic(IPushProcessHistoryService pushProcessHistoryService
                         , IMapper mapper
                         , IConfigLogic configLogic
                         , IPushSendProcessService pushSendProcessService
                         , IChannelLogic channelLogic
                         , ITokenBrandLogic tokenBrandLogic
                         )
 {
     _pushProcessHistoryService = pushProcessHistoryService;
     _mapper                 = mapper;
     _configLogic            = configLogic;
     _pushSendProcessService = pushSendProcessService;
     _channelLogic           = channelLogic;
     _tokenBrandLogic        = tokenBrandLogic;
 }
Ejemplo n.º 3
0
 public RetryTimesOverHandler(IMapper mapper, IPushProcessHistoryService pushProcessHistoryService)
 {
     _mapper = mapper;
     _pushProcessHistoryService = pushProcessHistoryService;
 }