public ActionResult Index(EditAccountModel model)
 {
     if (model != null)
     {
         UserInfo user = model.UpdateEntity(this.LoginUser());
         this.IUserInfoDataProvider.Update(user);
         model.FloorList = DropDownListHelper.GetFloorList(model.Floor.ToString());
         model.IsSave = true;
     }
     return View(model);
 }