I am calling KitchenController from HomeController, how can I get KitchenController's Model in HomeController.
public void KichenDetails(string KichenId)
{
if (string.IsNullOrEmpty(KichenId))
KichenId = "";
var result = new KitchenController().Index(KichenId);
result.Model.;// result contains model and other details as well
}