Hi, I know basic idea of thunderdome principle (one object enters, one object leaves) but I didn't see any real world example of it in asp.net mvc. Is it good example of thunderdome principle
public ActionResult Index(Employee employee)
{
//some actions here
return View(employeeViewModel);
}
But what about statement
The Controller classes will NEVER be directly exposed to anything related to HttpContext
How the action invoker should looks like ? Could You provide some examples and unit tests for it ?