// // GET: /PartnerPortal/JobPosting/ public ActionResult Index(long partnerID) { var model = new HomeIndexViewModel(partnerID); return View(model); }
// // GET: /PartnerPortal/Referral/ public ActionResult Index(string searchString, int SelectedStatusID = 0) { var model = new HomeIndexViewModel(3, searchString, SelectedStatusID); return View(model); }