Example #1
0
 public bool _DelUserProfit(string jsonData)
 {
     UserProfitBll ob = new UserProfitBll();
     List<UserProfit> we = JsonConvert.DeserializeObject(jsonData, typeof(List<UserProfit>)) as List<UserProfit>;
     return ob.DeleteList(we);
 }