public ActionResult SayHello(FooX fx)
        {
            //Response.ContentType = "text/plain";
            //return new ContentResult { Content = "Content result execution" };
            //return new JsonResult { Data = fx, JsonRequestBehavior = JsonRequestBehavior.AllowGet };

            return View((object)"ABC");
        }
        public String SayHelloPost(FooX fx)
        {
            Response.ContentType = "text/plain";

            return "Hello SLB o maior " + fx.foo + " " + fx.x;
        }