예제 #1
0
 // GET: Orden_Producto_Personalizado/Create
 public ActionResult Create()
 {
     ViewBag.orden       = ordenService.FindAll();
     ViewBag.ingrediente = ingredienteService.FindAll();
     ViewBag.empleado    = empleadoService.FindAll();
     return(View());
 }
 public ActionResult Create()
 {
     ViewBag.venta       = ventaService.FindAll();
     ViewBag.ingrediente = ingrdntService.FindAll();
     return(View());
 }
예제 #3
0
 public ActionResult Create()
 {
     ViewBag.producto    = prodctService.FindAll();
     ViewBag.ingrediente = ingrdntService.FindAll();
     return(View());
 }
예제 #4
0
 // GET: Ingrediente
 public ActionResult Index()
 {
     return(View(ingredienteService.FindAll()));
 }
예제 #5
0
 public new IEnumerable <Ingrediente> FindAll()
 {
     return(_ingredienteService.FindAll());
 }