public ActionResult AgregarIngredientes(IngredienteModel model) { _token = Session["Token"].ToString(); var ingredientes = new Ingredientes() { }; ingredientes.CrearIngrediente(ingredientes); return(RedirectToAction("VerIngredientes")); }
public void CrearIngrediente() { ObtenerToken("ADMINISTRADOR", "ASDF"); var ingrediente = new Ingredientes() { Token = _token, cantidad = 15, platilloId = 62, productoId = new Productos() { id = 61, nombre = "AZUCAR", descripcion = "AZUCAR", cantidad = 5, precio = 1500, categoria = "INGREDIENTE" } }; Assert.AreEqual(true, ingrediente.CrearIngrediente(ingrediente)); }