Ejemplo n.º 1
0
        public void SetTimeline(BaseTimeLine timeline)
        {
            if (timeline == null)
            {
                return;
            }

            this.CurrentTimeline = timeline;
        }
Ejemplo n.º 2
0
        public void SetProfile(Profile profile)
        {
            this.Profile = profile;

            this.Home    = new HomeTimeLine(profile);
            this.Mention = new MentionTimeLine(profile);

            this.CurrentTimeline = this.Home;
        }