public UpdateWalmartOrderAdjustmentDataThread(IRefundApi api,
                                               long companyId,
                                               ISystemMessageService messageService,
                                               TimeSpan?callbackInterval,
                                               TimeSpan betweenProcessingInverval)
     : base("Update" + api.Market + "OrderAdjustmentData", companyId, messageService, callbackInterval)
 {
     _api = api;
     _betweenProcessingInverval = betweenProcessingInverval;
 }
Exemple #2
0
 public BaseOrderRefundService(IRefundApi api,
                               ISystemActionService actionService,
                               IEmailService emailService,
                               ILogService log,
                               ITime time)
 {
     _api           = api;
     _log           = log;
     _time          = time;
     _actionService = actionService;
     _emailService  = emailService;
 }