示例#1
0
 public async Task <ActionResult> GetLayoutData()
 {
     return(Json(new
     {
         User = new { fullName = await _representativeUserService.GetFullName(Convert.ToInt32(User.Identity.Name)) }
     }, JsonRequestBehavior.AllowGet));
 }