public ActionResult Productos(int id_Negocio) { if (!this.currentUser()) { return(RedirectToAction("Ingresar", "Login")); } ViewBag.id_Negocio = id_Negocio; return(View(dal.GetProductos(id_Negocio))); }
public ActionResult Propuesta(int id) { if (!this.currentUser()) { return(RedirectToAction("Ingresar", "Login")); } if (esUsuario()) { return(RedirectToAction("Index", "Alertas")); } try { Usuarios user = getCurrentUser(); Negocio_DAL negocioDal = new Negocio_DAL(); ViewBag.lstNegocios = negocioDal.GetNegociosByUserId(user.id_Usuario); ViewBag.lstProductos = new List <Negocio_Producto>(); Pedido_Propuesta obj = new Pedido_Propuesta(); if (id > 0) { obj = dal.GetPropuesta(id); //obj.IdNegocio = user.id_Usuario; if (obj.IdNegocio > 0) { ViewBag.lstProductos = negocioDal.GetProductos(obj.IdNegocio); } return(View(obj)); } return(View(obj)); } catch (Exception ex) { throw ex; } }