Ejemplo n.º 1
0
        public GatewayPollingService(
            IDeviceInfo deviceInfo,
            IHttpService httpService,
            IReachability reachability,
            IRepositories repositories,
            IMvxMessenger messenger,
            IGatewayService gatewayService,
            IGatewayQueuedService gatewayQueuedService,
            IInfoService infoService,
            IDataChunkService dataChunkService,
            ICustomPresenter customPresenter,
            ILoggingService loggingService
            )
        {
            _deviceInfo           = deviceInfo;
            _httpService          = httpService;
            _reachability         = reachability;
            _repositories         = repositories;
            _messenger            = messenger;
            _gatewayService       = gatewayService;
            _gatewayQueuedService = gatewayQueuedService;
            _infoService          = infoService;
            _dataChunkService     = dataChunkService;
            _customPresenter      = customPresenter;

            _deviceRepository = repositories.DeviceRepository;
            _loggingService   = loggingService;
        }
Ejemplo n.º 2
0
 public InstructionOnSiteViewModel(INavigationService navigationService, IRepositories repositories, IInfoService infoService, IDataChunkService dataChunkService)
 {
     _navigationService = navigationService;
     _repositories      = repositories;
     _infoService       = infoService;
     _dataChunkService  = dataChunkService;
 }
Ejemplo n.º 3
0
 public ReviseQuantityViewModel(
     INavigationService navigationService,
     IRepositories repositories,
     IInfoService infoService,
     IDataChunkService dataChunkService)
 {
     _navigationService = navigationService;
     _repositories      = repositories;
     _infoService       = infoService;
     _dataChunkService  = dataChunkService;
 }
Ejemplo n.º 4
0
 public MessageViewModel(IRepositories repositories, IInfoService infoService, IDataChunkService dataChunkService)
 {
     _dataChunkService = dataChunkService;
     _infoService      = infoService;
     _repositories     = repositories;
 }