I have example code in which the signature of the Create action menthod in the controller looks like this:
[HttpPost]
public ActionResult Create(JobCardViewData viewData)
I have just created a new MVC application and the same signature looks like this:
[HttpPost]
public ActionResult Create(FormCollection collection)
I would prefer to know how to implement my action methods like the top example, or at least how to convert from the FormCollection to a business object without going as low level as using Reflection.