public ActionResult GetTreeView(string viewID) { var projects = InfoSesion.ObtenerSesion <List <ModProyectosActivos> >("ProyectosActivos"); var model = projects.Where(x => x.Proyecto == viewID); return(PartialView("_Treeview", model)); }
public ActionResult GetMobileSwitch(string projectName) { var projects = InfoSesion.ObtenerSesion <List <ModProyectosActivos> >("ProyectosActivos"); var model = projects.Where(x => x.Entidad == projectName); return(PartialView("_MobileButton", model)); }