示例#1
0
 public PeopleListViewModel(PeopleList.ListType listType, long uid)
 {
     ListType = listType;
     Uid      = uid;
     Source   = new LoadingCollection <PeopleListDataSource, UserModel>(new PeopleListDataSource(listType, uid));
 }
示例#2
0
 public PeopleListDataSource(PeopleList.ListType type, long uid)
 {
     _type = type;
     _uid  = uid;
 }