If my Model is Contacts then I can easily get it in controller like this:
[HttpPost]
public ActionResult Create(Contact contact)
...
But if my Model is wrapper for Contacts and something else then in View I display it using Model.contact.
How to get Contact in Controller the same way like I did in first case? I don't want to use Formcollection.