예제 #1
0
 // GET: Orden_Producto_Personalizado/Create
 public ActionResult Create()
 {
     ViewBag.orden       = ordenService.FindAll();
     ViewBag.ingrediente = ingredienteService.FindAll();
     ViewBag.empleado    = empleadoService.FindAll();
     return(View());
 }
 // GET: Orden_Producto/Create
 public ActionResult Create()
 {
     ViewBag.orden    = ordenService.FindAll();
     ViewBag.producto = productoService.FindAll();
     ViewBag.empleado = empleadoService.FindAll();
     return(View());
 }
예제 #3
0
 public ActionResult Index()
 {
     return(View(ordenService.FindAll()));
 }