Skip to content

Instantly share code, notes, and snippets.

View davidACash's full-sized avatar

David Cash davidACash

  • Las Vegas
View GitHub Profile
@davidACash
davidACash / TestController.cs
Created January 23, 2019 17:15
CWE-915 Solution C#
public class TestController : Controller
{
[HttpPost]
public ActionResult TestMethod([Bind(Include = TestModel.BindProperties)] TestModel testModel)
{
// ...
}
}
public class TestModel