public StoryViewModel(Story story) { this.Story = story; SunData.GetFavorites().CollectionChanged += new NotifyCollectionChangedEventHandler(StoryViewModel_CollectionChanged); }
internal StoryControl(Story story) : this() { DataContext = new StoryViewModel(story); }