public ActionResult Create() { ViewBag.venta = ventaService.FindAll(); ViewBag.ingrediente = ingrdntService.FindAll(); return(View()); }
// GET: Orden/Create public ActionResult Create() { ViewBag.ventaservice = ventaService.FindAll(); return(View()); }
public ActionResult Create() { ViewBag.producto = productoservice.FindAll(); ViewBag.venta = ventaservice.FindAll(); return(View()); }
// GET: Venta public ActionResult Index() { return(View(ventaservice.FindAll())); }