public FriendsViewModel(long lid, string listName, bool list)
 {
     this._lid  = lid;
     this._name = listName;
     this._mode = FriendsViewModel.Mode.Lists;
     this.Initialize();
 }
 public FriendsViewModel(long uid, string name)
 {
     this._uid  = uid;
     this._name = name;
     this._mode = FriendsViewModel.Mode.Friends;
     this.Initialize();
 }