예제 #1
0
        public void AUComplete(object sender, DownloadStringCompletedEventArgs e)
        {
            try
            {
                var myString = e.Result.Remove(e.Result.IndexOf("<"));
                JObject o = JObject.Parse(myString);
                au = JsonConvert.DeserializeObject<UserAttention>(o.ToString());
            }
            catch (Exception ex)
            {

            }
        }
예제 #2
0
 public bool UpdateEntity(UserAttention entity)
 {
     return(base.UpdateEntity <UserAttention>(entity));
 }
예제 #3
0
 public bool DeleteEntity(UserAttention entity)
 {
     return(base.DeleteEntity <UserAttention>(entity));
 }
예제 #4
0
 public bool CreateEntity(UserAttention entity)
 {
     return(base.CreateEntity <UserAttention>(entity));
 }