using System.Collections.Generic;
namespace HelloWorldMvcApp
public class HomeController : Controller
public ActionResult Index()
return View(new Customer());
public JsonResult GetCustomers()
Customer[] customers = new Customer[]
Age = 52, Comments = "Hello World", Id = 1, Name = "Andrew Max"
Age = 12, Comments = "Hello World", Id = 2, Name = "Michael Hearve"
Age = 54, Comments = "Hello World", Id = 3, Name = "Best Regards"
Age = 33, Comments = "Hello World", Id = 4, Name = "Andrea Lucy"
Age = 46, Comments = "Hello World", Id = 5, Name = "Silvia Reagen Estongard"
Age = 23, Comments = "Hello World", Id = 6, Name = "James Hall"
Age = 43, Comments = "Hello World", Id = 7, Name = "Pak Marsudi"
Age = 22, Comments = "Hello World", Id = 8, Name = "Gilbert Silalahi"
Age = 52, Comments = "Hello World", Id = 9, Name = "Noni Cukong"
return Json(customers, JsonRequestBehavior.AllowGet);