Пример #1
0
            public TrendsModel(AddTimeline addTimeline, List <TrendProperties> trends)
            {
                this.AddTimeline = addTimeline;

                this.Trends = trends;

                this.SearchCommand = new RelayCommand(this.Search);
            }
Пример #2
0
            public UsersModel(AddTimeline addTimeline, ObservableCollection <UserProperties> users, int tokenSuffix)
            {
                this.AddTimeline = addTimeline;

                this.Users       = users;
                this.TokenSuffix = tokenSuffix;

                this.SearchCommand = new RelayCommand(this.Search);
            }
Пример #3
0
            public ListProperties(AddTimeline addTimeline, Uri url, string listName, string userName, long id, int count)
            {
                this.AddTimeline = addTimeline;

                this.Icon        = url;
                this.ListName    = listName;
                this.UserName    = userName;
                this.Id          = id;
                this.MemberCount = count;

                this.SelectCommand = new RelayCommand(this.Select);
            }
Пример #4
0
            public TrendProperties(AddTimeline addTimeline)
            {
                this.AddTimeline = addTimeline;

                this.SelectCommand = new RelayCommand(this.Select);
            }