static BaseViewModel()
 {
     AuthenticationService = DependencyService.Get <IAuthenticationService>();
     LoggingService        = DependencyService.Get <ILoggingService>();
     RestPoolService       = DependencyService.Get <IRestPoolService>();
     XSnackService         = DependencyService.Get <IXSnack>();
 }
Esempio n. 2
0
 public AccountService(IRestPoolService restPoolService)
 {
     _restPoolService = restPoolService;
 }
Esempio n. 3
0
 public VisionService()
 {
     authenticationService = DependencyService.Get <IAuthenticationService>();
     restPoolService       = DependencyService.Get <IRestPoolService>();
 }
 public AuthenticationService()
 {
     restPoolService = DependencyService.Get <IRestPoolService>();
 }
Esempio n. 5
0
 public CommentsService(IRestPoolService restPoolService)
 {
     _restPoolService = restPoolService;
 }
Esempio n. 6
0
 public AnuntService(IRestPoolService restPoolService, ISettingsService settingsService)
 {
     _restPoolService = restPoolService;
     _settingsService = settingsService;
 }
Esempio n. 7
0
 public AuthenticationService(IRestPoolService restPoolService, ISettingsService settingsService)
 {
     _restPoolService = restPoolService;
     _settingsService = settingsService;
 }