Ejemplo n.º 1
0
 public void getFollowerList()
 {
     try
     {
         this.UserFollowers.Clear();
         data.userfollowerload(this.UserFollowers, this.UserId);
     }
     catch (Exception ex)
     {
         this.UserFollowers.Add(new Models.UserInfo
         {
             Text = ex.Message
         }
                                );
     }
 }