}public ContentResult TestFull() { var m = new Test.Models.Custom { BirthPlace = "Elazığ", BirthYear = 1985, Name = "Orhan", Surname = "Aygün" }; return Content(m.GenerateForm()); }
public ContentResult TestEmpty() { var m = new Test.Models.Custom(); return Content(m.GenerateForm()); }public ContentResult TestFull()