示例#1
0
 public SafetyCheckService(Repositories.IRepositories repositories, IGatewayQueuedService gatewayQueuedService, IGpsService gpsService, IInfoService infoService)
 {
     _repositories         = repositories;
     _gatewayQueuedService = gatewayQueuedService;
     _gpsService           = gpsService;
     _infoService          = infoService;
 }
示例#2
0
 public DataChunkService(
     Repositories.IRepositories repositories,
     IGatewayQueuedService gatewayQueuedService,
     IGpsService gpsService,
     ILoggingService loggingService)
 {
     _repositories         = repositories;
     _gatewayQueuedService = gatewayQueuedService;
     _gpsService           = gpsService;
     _loggingService       = loggingService;
 }
示例#3
0
 public DiagnosticsService(
     Repositories.IRepositories repositories,
     ILoggingService loggingService,
     IReachability reachability,
     IDeviceInfo deviceInfo,
     IUpload upload)
 {
     _repositories   = repositories;
     _loggingService = loggingService;
     _reachability   = reachability;
     _deviceInfo     = deviceInfo;
     _upload         = upload;
 }
示例#4
0
 public ImageUploadService(
     Repositories.IRepositories repositories,
     IGpsService gpsService,
     ILoggingService loggingService,
     IReachability reachability,
     IHttpService httpService)
 {
     _repositories   = repositories;
     _gpsService     = gpsService;
     _loggingService = loggingService;
     _reachability   = reachability;
     _httpService    = httpService;
 }
示例#5
0
 public DisplaySafetyCheckViewModel(IInfoService infoService, INavigationService navigationService, Repositories.IRepositories repositories)
 {
     _infoService       = infoService;
     _navigationService = navigationService;
     _repositories      = repositories;
 }
示例#6
0
 public InstructionSafetyCheckSignatureViewModel(Services.IInfoService infoService, Services.IGatewayQueuedService gatewayQueuedService, ICustomUserInteraction userInteraction, Repositories.IRepositories repositories, INavigationService navigationService, ISafetyCheckService safetyCheckService)
     : base(infoService, gatewayQueuedService, userInteraction, repositories, navigationService, safetyCheckService)
 {
 }
示例#7
0
 public SafetyCheckSignatureViewModel(Services.IInfoService infoService, Services.IGatewayQueuedService gatewayQueuedService, ICustomUserInteraction userInteraction, Repositories.IRepositories repositories, INavigationService navigationService, ISafetyCheckService safetyCheckService)
 {
     _infoService          = infoService;
     _gatewayQueuedService = gatewayQueuedService;
     _userInteraction      = userInteraction;
     _navigationService    = navigationService;
     _repositories         = repositories;
     _safetyCheckService   = safetyCheckService;
 }