Example #1
0
 public JsonResult UpdateProfile(User profile)
 {
     var common = new CommonService();
     common.UpdateProfile(profile);
     return Json(new { common.message, common.success });
 }