protected TaskFileService(DropboxService dropBoxService, ApplicationSettings settings) { _dropBoxService = dropBoxService; Settings = settings; TaskList.CollectionChanged += TaskListCollectionChanged; Messenger.Default.Register <ApplicationReadyMessage>(this, message => Start()); Messenger.Default.Register <NeedCredentialsMessage>(this, message => { if (LoadingState == TaskLoadingState.Syncing) { LoadingState = TaskLoadingState.Ready; } }); }
public ArchiveTaskFileService(DropboxService dropBoxService, ApplicationSettings settings) : base(dropBoxService, settings) { }
public PrimaryTaskFileService(DropboxService dropBoxService, ApplicationSettings settings) : base(dropBoxService, settings) { }