public void BuscarPlatillo() { ObtenerToken("ADMINISTRADOR", "ASDF"); var platillo = new Platillo() { Token = _token }; platillo = platillo.ObtenerPlatillo(61); Assert.AreEqual(true, platillo != null); }
public void ObtenerIingredientes() { ObtenerToken("ADMINISTRADOR", "ASDF"); var platillo = new Platillo() { Token = _token }; var ingredientes = platillo.ObtenerPlatillo(1).ingredienteId; Assert.IsNotNull(ingredientes); }
public ActionResult VerDetalles(int id) { _token = Session["Token"].ToString(); if (string.IsNullOrEmpty(_token)) { RedirectToAction("Index", "Home"); } var plat = new Platillo() { Token = _token }; var ingredientes = plat.ObtenerPlatillo(id).ingredienteId; ViewData["Detalles"] = ingredientes; return(View()); }
public ActionResult EditarPlatillo(int id) { if (string.IsNullOrEmpty(_token)) { RedirectToAction("Index", "Home"); } _token = Session["Token"].ToString(); var plat = new Platillo() { Token = _token }; plat = plat.ObtenerPlatillo(id); PlatilloModel model = new PlatilloModel { Id = plat.id, Nombre = plat.nombre, Tiempo = plat.tiempo, }; return(View(model)); }