I have two action methods that look like this
[HttpPost]
public ActionResult Search(Models.InputModel input)
{
if (!IsSearchCriteriaValid(input))
return RedirectToAction("Index");
TempData[TempDataSearchInput] = input;
return RedirectToAction("List");
}
public ActionResult List()
{
var input = TempData[TempDataSearchInput] as Models.InputModel;
if (!IsSearchCriteriaValid(input))
return RedirectToAction("Index");
var result = new List<MyDTO>();
AutoMapper.Mapper.Map( _repository.GetBy(input), results);
var model = new Models.DisplayListModel { Result = result };
return View("List", model);
}
Is there a standard best practices way to do something like this?