public void SetTimeline(BaseTimeLine timeline) { if (timeline == null) { return; } this.CurrentTimeline = timeline; }
public void SetProfile(Profile profile) { this.Profile = profile; this.Home = new HomeTimeLine(profile); this.Mention = new MentionTimeLine(profile); this.CurrentTimeline = this.Home; }