public SendPendingRemoteCommandsService(IOutgoingNotificationQueueRepository outgoingNotificationQueueRepository,
     IOutgoingCommandQueueRepository outgoingCommandQueueRepository, IWebApiProxy webApiProxy)
 {
     _outgoingCommandQueueRepository = outgoingCommandQueueRepository;
     _webApiProxy = webApiProxy;
     _outgoingNotificationQueueRepository = outgoingNotificationQueueRepository;
 }
Пример #2
0
 public UpdateMasterDataService(IUpdateLocalDBService updateLocalDBService, IWebApiProxy webApiProxy, IConfigRepository configRepository, IGeneralSettingRepository settingRepository)
 {
     _updateLocalDBService = updateLocalDBService;
     _tablesToSync = new List<TableSyncInfo>();
     _webApiProxy = webApiProxy;
     _logger.Debug("##### -------> UpdateMasterDataService ctor <----------#######");
     _configRepository = configRepository;
     _settingRepository = settingRepository;
 }
 public ReceiveAndProcessPendingRemoteCommandsService(IWebApiProxy webApiProxy, IConfigRepository configRepository, 
     IErrorLogRepository errorLogRepository, IAuditLogWFManager auditLogWFManager,  IIncomingCommandHandler incomingCommandHandler, IIncomingCommandQueueRepository incomingCommandQueueRepository)
 {
     _incomingCommandHandler = incomingCommandHandler;
     _incomingCommandQueueRepository = incomingCommandQueueRepository;
     _auditLogWFManager = auditLogWFManager;
     _errorLogRepository = errorLogRepository;
     _configRepository = configRepository;
     _webApiProxy = webApiProxy;
 }
 public SendPendingEnvelopeCommandsService(IOutgoingCommandEnvelopeQueueRepository outgoingCommandEnvelopeQueueRepository, IWebApiProxy webApiProxy, IConfigService configService)
 {
     _outgoingCommandEnvelopeQueueRepository = outgoingCommandEnvelopeQueueRepository;
     _webApiProxy = webApiProxy;
     _configService = configService;
 }
Пример #5
0
 public AuthenticationController(IWebApiProxy webApiProxy)
 {
     _webApiProxy = webApiProxy;
 }
 public ReceiveAndProcessPendingRemoteCommandEnvelopesService(IIncomingCommandHandler incomingCommandHandler, IConfigRepository configRepository, IWebApiProxy webApiProxy)
 {
     _incomingCommandHandler = incomingCommandHandler;
     _configRepository = configRepository;
     _webApiProxy = webApiProxy;
 }
Пример #7
0
 public DynamicHeaderWebApiProxyWrapper(IWebApiProxy proxy, IDynamicHeaderProvider headerProvider)
 {
     this.Proxy          = proxy;
     this.HeaderProvider = headerProvider;
 }
Пример #8
0
 public PersonController(IWebApiProxy webApiProxy)
 {
     _webApiProxy = webApiProxy;
 }
Пример #9
0
 public AccountController(IWebApiProxy webApiProxy) : base(webApiProxy)
 {
 }
Пример #10
0
 public BaseController(IWebApiProxy webApiProxy)
 {
     WebApiProxy = webApiProxy;
 }
Пример #11
0
 public PersonController(IWebApiProxy webApiProxy) : base(webApiProxy)
 {
 }