public WorkshopStore(ISpeakerStore speakerStore, ICategoryStore categoryStore, IFavoriteStore favoriteStore, IFeedbackStore feedbackStore)
 {
     _speakerStore  = speakerStore;
     _favoriteStore = favoriteStore;
     _categoryStore = categoryStore;
     _feedbackStore = feedbackStore;
 }
Esempio n. 2
0
 public SessionStore()
 {
     speakerStore  = DependencyService.Get <ISpeakerStore>();
     favoriteStore = DependencyService.Get <IFavoriteStore>();
     categoryStore = DependencyService.Get <ICategoryStore>();
     feedbackStore = DependencyService.Get <IFeedbackStore>();
 }
Esempio n. 3
0
 public StoreManager(INotificationStore notificationStore, ICategoryStore categoryStore, IFavoriteStore favoriteStore, ISessionStore sessionStore, ISpeakerStore speakerStore, IEventStore eventStore, ISponsorStore sponsorStore, IFeedbackStore feedbackStore, IWorkshopStore workshopStore, IApplicationDataStore applicationDataStore)
 {
     _notificationStore    = notificationStore;
     _categoryStore        = categoryStore;
     _favoriteStore        = favoriteStore;
     _sessionStore         = sessionStore;
     _speakerStore         = speakerStore;
     _eventStore           = eventStore;
     _sponsorStore         = sponsorStore;
     _feedbackStore        = feedbackStore;
     _workshopStore        = workshopStore;
     _applicationDataStore = applicationDataStore;
 }
Esempio n. 4
0
 public StoreManager(INotificationStore notificationStore, ICategoryStore categoryStore, IFavoriteStore favoriteStore, ISessionStore sessionStore, ISpeakerStore speakerStore, IEventStore eventStore, ISponsorStore sponsorStore, IFeedbackStore feedbackStore, IAuthenticate authenticator, IWorkshopStore workshopStore, IApplicationDataStore applicationDataStore)
 {
     _notificationStore    = notificationStore;
     _categoryStore        = categoryStore;
     _favoriteStore        = favoriteStore;
     _sessionStore         = sessionStore;
     _speakerStore         = speakerStore;
     _eventStore           = eventStore;
     _sponsorStore         = sponsorStore;
     _feedbackStore        = feedbackStore;
     _authenticator        = authenticator;
     _workshopStore        = workshopStore;
     _applicationDataStore = applicationDataStore;
     Task.Run(async() => { await InitializeAsync().ConfigureAwait(false); }).Wait();
 }
Esempio n. 5
0
 public SessionStore()
 {
     this._speakerStore  = DependencyService.Get <ISpeakerStore>();
     this._categoryStore = DependencyService.Get <ICategoryStore>();
     this._feedbackStore = DependencyService.Get <IFeedbackStore>();
 }