public ApiResult ChangePassword() { try { TokenManager mng = new TokenManager(); ApiResultObject <bool> result = mng.ChangePassword(this.ActionContext); return(new ApiResult(result, this.ActionContext)); } catch (Exception ex) { DungLH.Util.CommonLogging.LogSystem.Error(ex); return(null); } }