Ejemplo n.º 1
0
 public AlertSOSViewModel(IDataService dataService, Interfaces.IDialogService dialogService, IDispatchOnUIThread dispatcherService)
 {
     _dataService       = dataService;
     _dialogService     = dialogService;
     _dispatcherService = dispatcherService;
     LsRecipients       = new List <AlertRecipientDTO>();
 }
Ejemplo n.º 2
0
 public MainPageViewModel(Interfaces.IDialogService dialogService,
     IEventAggregator eventAggregator,INavigationService navigationService)
 {
     this._dialogService = dialogService;
     this._eventAggregator = eventAggregator;
     this._navigationService = navigationService;
 }
Ejemplo n.º 3
0
 public MainPageViewModel(Interfaces.IDialogService dialogService,
                          IEventAggregator eventAggregator, INavigationService navigationService)
 {
     this._dialogService     = dialogService;
     this._eventAggregator   = eventAggregator;
     this._navigationService = navigationService;
 }
Ejemplo n.º 4
0
 public ParameterViewModel(IDataService dataService, Interfaces.IDialogService dialogService, IDispatchOnUIThread dispatcherService)
 {
     _dataService       = dataService;
     _dialogService     = dialogService;
     _dispatcherService = dispatcherService;
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
 }
 public AddSeekiosViewModel(INavigationService navigationService, IDataService dataService, Interfaces.IDialogService dialogService, IDispatchOnUIThread dispatcherService)
 {
     _navigationService = navigationService;
     _dataService       = dataService;
     _dialogService     = dialogService;
     _dispatcherService = dispatcherService;
 }
Ejemplo n.º 6
0
 public ModeTrackingViewModel(IDispatchOnUIThread dispatcherService
                              , IDataService dataService
                              , Interfaces.IDialogService dialogService
                              , ILocalNotificationService localNotificationService)
     : base(dispatcherService, dataService, dialogService, localNotificationService)
 {
 }
Ejemplo n.º 7
0
 public AlertViewModel(IDataService dataService, Interfaces.IDialogService dialogService)
 {
     _dataService = dataService;
     _dialogService = dialogService;
     _navigationService = ServiceLocator.Current.GetInstance<INavigationService>();
     LsRecipients = App.CurrentUserEnvironment.GetRecipientsFromAlert(IdAlert);
 }
Ejemplo n.º 8
0
 public MapViewModel(IDispatchOnUIThread dispatcher
                     , IDataService dataService
                     , Interfaces.IDialogService dialogService
                     , ILocalNotificationService localNotificationService)
     : base(dispatcher, dataService, dialogService, localNotificationService)
 {
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
 }
Ejemplo n.º 9
0
 public HistoricViewModel(IDataService dataService, Interfaces.IDialogService dialogService)
 {
     _dataService       = dataService;
     _dialogService     = dialogService;
     LsSeekiosLocations = new List <SeekiosLocations>();
     CurrentLowerDate   = DateTime.Now.AddMonths(-1);
     CurrentUpperDate   = DateTime.Now;
 }
 public ModeSelectionViewModel(IDispatchOnUIThread dispatcherService
                               , IDataService dataService
                               , Interfaces.IDialogService dialogService
                               , ISaveDataService saveDataService)
 {
     _dispatcherService = dispatcherService;
     _dataService       = dataService;
     _dialogService     = dialogService;
     _saveDataService   = saveDataService;
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
     LsTrackingSetting  = new List <TrackingSetting>();
 }
Ejemplo n.º 11
0
 public ModeDontMoveViewModel(IDispatchOnUIThread dispatcher
                              , IDataService dataService
                              , Interfaces.IDialogService dialogService
                              , ILocalNotificationService localNotificationService)
     : base(dispatcher, dataService, dialogService, localNotificationService)
 {
     _navigationService           = ServiceLocator.Current.GetInstance <INavigationService>();
     _dialogService               = dialogService;
     _dataService                 = dataService;
     _localNotificationService    = localNotificationService;
     LsSeekiosInTrackingAfterMove = new HashSet <int>();
     LsAlertsModeDontMove         = new List <AlertWithRecipientDTO>();
 }
Ejemplo n.º 12
0
 public ListSeekiosViewModel(IDataService dataService
                             , Interfaces.IDialogService dialogService
                             , ISaveDataService saveDataService
                             , IDispatchOnUIThread dispatcherService
                             , ILocalNotificationService localNotificationService)
 {
     _dataService               = dataService;
     _dialogService             = dialogService;
     _saveDataService           = saveDataService;
     _dispatcherService         = dispatcherService;
     _localNotificationService  = localNotificationService;
     _navigationService         = ServiceLocator.Current.GetInstance <INavigationService>();
     ActivityNeedsUIToBeUpdated = false;
 }
 public DetailSeekiosViewModel(IDataService dataService
                               , Interfaces.IDialogService dialogService
                               , ISaveDataService saveDataService
                               , INavigationService navigationService
                               , IDispatchOnUIThread dispatcherService)
 {
     _dataService               = dataService;
     _dialogService             = dialogService;
     _navigationService         = navigationService;
     _saveDataService           = saveDataService;
     _dispatcherService         = dispatcherService;
     ActivityNeedsUIToBeUpdated = false;
     IsSeekiosDeleted           = false;
 }
 public MapViewModelBase(IDispatchOnUIThread dispatcherService
                         , IDataService dataService
                         , Interfaces.IDialogService dialogService
                         , ILocalNotificationService localNotificationService)
 {
     _dispatcherService        = dispatcherService;
     _dataService              = dataService;
     _dialogService            = dialogService;
     _localNotificationService = localNotificationService;
     _saveDataService          = GalaSoft.MvvmLight.Ioc.SimpleIoc.Default.GetInstance <ISaveDataService>();
     LsSeekiosAlertState       = new HashSet <int>();
     LsSeekiosOnDemand         = new List <SeekiosOnDemand>();
     LsSeekiosOnTracking       = new List <SeekiosOnTracking>();
     IsInNormalMode            = true;
 }
 public ModeZoneViewModel(IDataService dataService
                          , Interfaces.IDialogService dialogService
                          , IDispatchOnUIThread dispatcherService
                          , ILocalNotificationService localNotificationService)
     : base(dispatcherService, dataService, dialogService, localNotificationService)
 {
     _dataService              = dataService;
     _dialogService            = dialogService;
     _localNotificationService = localNotificationService;
     _navigationService        = ServiceLocator.Current.GetInstance <INavigationService>();
     _lsAreaCoords             = new List <LatitudeLongitude>();
     IsGoingBack = false;
     LsSeekiosInTrackingAfterOOZ = new HashSet <int>();
     LsAlertsModeZone            = new List <AlertWithRecipientDTO>();
 }
 public ListAlertsViewModel(IDataService dataService, Interfaces.IDialogService dialogService)
 {
     _dataService       = dataService;
     _dialogService     = dialogService;
     _navigationService = ServiceLocator.Current.GetInstance <INavigationService>();
 }
Ejemplo n.º 17
0
 public TransactionHistoricViewModel(IDataService dataService, Interfaces.IDialogService dialogService)
 {
     _dataService   = dataService;
     _dialogService = dialogService;
     LsOperation    = new List <OperationDTO>();
 }