I want my MVC View send a type to action result as parameter so that i could use that type in my generic class
public ActionResult ManageData(T genericType)
{
var result = new BaseData<genericType>().GetSharedData();
return View(result);
}