public MasterViewModel(
     IMvxMessenger messenger,
     ISecurityService securityService,
     IWebNavigation webNavigation,
     ISystemInfo systemInfo,
     IAppVersionService appVersionService,
     IStudentDataService studentDataService,
     IRefreshDataService refreshDataService,
     IAbsenceDataService absenceDataService,
     IEvaluationDataService evaluationDataService,
     IEventDataService eventDataService,
     ILessonDataService lessonDataService,
     INoteDataService noteDataService,
     IUzenetDataService uzenetDataService,
     IExamDataService examDataService)
 {
     this._messenger             = messenger;
     this._securityService       = securityService;
     this._webNavigation         = webNavigation;
     this._systemInfo            = systemInfo;
     this._appVersionService     = appVersionService;
     this._studentDataService    = studentDataService;
     this._refreshDataService    = refreshDataService;
     this._absenceDataService    = absenceDataService;
     this._evaluationDataService = evaluationDataService;
     this._eventDataService      = eventDataService;
     this._lessonDataService     = lessonDataService;
     this._noteDataService       = noteDataService;
     this._uzenetDataService     = uzenetDataService;
     this._examDataService       = examDataService;
 }
示例#2
0
 public LoginViewModel(
     IMvxMessenger messenger,
     IWebNavigation webNavigation,
     IAppVersionService appVersionService,
     IRefreshDataService refreshDataService,
     IAuthDataService authDataService,
     IPlatformStyleProvider platformStyleProvider,
     ICredentialsDataService credentialsDataService)
     : base(messenger, webNavigation, appVersionService, refreshDataService, authDataService, platformStyleProvider, credentialsDataService)
 {
 }
 public ProfilesViewModel(
     IMvxMessenger messenger,
     IPlatformStyleProvider platformStyleProvider,
     IRefreshDataService refreshDataService,
     IStudentDataService studentDataService,
     IAuthDataService authDataService)
 {
     this._messenger             = messenger;
     this._platformStyleProvider = platformStyleProvider;
     this._refreshDataService    = refreshDataService;
     this._studentDataService    = studentDataService;
     this._authDataService       = authDataService;
 }
示例#4
0
 public NewProfileViewModel(
     IMvxMessenger messenger,
     IWebNavigation webNavigation,
     IAppVersionService appVersionService,
     IRefreshDataService refreshDataService,
     IAuthDataService authDataService,
     IPlatformStyleProvider platformStyleProvider,
     ICredentialsDataService credentialsDataService)
 {
     this._messenger              = messenger;
     this._webNavigation          = webNavigation;
     this._appVersionService      = appVersionService;
     this._refreshDataService     = refreshDataService;
     this._platformStyleProvider  = platformStyleProvider;
     this._credentialsDataService = credentialsDataService;
     this._authDataService        = authDataService;
 }
 public RootContentViewModel(
     IRefreshDataService refreshDataService,
     IMvxMessenger messenger,
     IPushNotificationService pushNotificationService,
     ISettingsDataService settingsDataService,
     IAbsenceDataService absenceDataService,
     IAbsenceDbDataService absenceDbDataService,
     IEvaluationDataService evaluationDataService,
     IEvaluationDbDataService evaluationDbDataService,
     IEventDataService eventDataService,
     IExamDataService examDataService,
     IExamDbDataService examDbDataService,
     INoteDataService noteDataService,
     INoteDbDataService noteDbDataService,
     ILessonDataService lessonDataService,
     ILessonDbDataService lessonDbDataService,
     IUzenetDataService uzenetDataService,
     IRatingDataService ratingDataService,
     IPushNotificationPlatformSpecificService pushNotificationPlatformSpecificService,
     IFirebaseAnalytics firebaseAnalytics,
     IFirebaseRemoteConfigurationService remoteConfigurationService)
 {
     this._refreshDataService      = refreshDataService;
     this._messenger               = messenger;
     this._pushNotificationService = pushNotificationService;
     this._settingsDataService     = settingsDataService;
     this._absenceDataService      = absenceDataService;
     this._absenceDbDataService    = absenceDbDataService;
     this._evaluationDataService   = evaluationDataService;
     this._evaluationDbDataService = evaluationDbDataService;
     this._eventDataService        = eventDataService;
     this._examDataService         = examDataService;
     this._examDbDataService       = examDbDataService;
     this._noteDataService         = noteDataService;
     this._noteDbDataService       = noteDbDataService;
     this._lessonDataService       = lessonDataService;
     this._lessonDbDataService     = lessonDbDataService;
     this._uzenetDataService       = uzenetDataService;
     this._pushNotificationPlatformSpecificService = pushNotificationPlatformSpecificService;
     this._firebaseAnalytics          = firebaseAnalytics;
     this._ratingDataService          = ratingDataService;
     this._remoteConfigurationService = remoteConfigurationService;
 }