Exemple #1
0
        public ActionResult Delete(int id)
        {
            DBLote dblote = new DBLote();
            Lote   lote   = new Lote(dblote);

            lote.Delete(id);
            return(RedirectToAction("Index", "Lote"));
        }
Exemple #2
0
        public ActionResult Edit(LoteIngresoViewModels datos)
        {
            DBLote dblote = new DBLote();
            Lote   lote   = new Lote(dblote);

            lote.Update(datos);
            return(RedirectToAction("Index", "Lote"));
        }
Exemple #3
0
        // GET: Lote
        public ActionResult Index()
        {
            DBLote dbLote     = new DBLote();
            Lote   lote       = new Lote(dbLote);
            var    listasLote = lote.SelectAllLote();

            return(View(listasLote));
        }
Exemple #4
0
        public ActionResult Create(LoteIngresoViewModels datos)
        {
            ViewBag.Title = "Ingresar Lote";
            DBLote dbLote = new DBLote();
            Lote   lote   = new Lote(dbLote);

            lote.Save(datos);
            return(RedirectToAction("Index", "Lote"));
        }
Exemple #5
0
        public ActionResult Edit(int id)
        {
            DBLote         dblote         = new DBLote();
            Lote           lote           = new Lote(dblote);
            DBLotificadora dblotificadora = new DBLotificadora();
            Lotificadora   lotifi         = new Lotificadora(dblotificadora);
            DBManzana      dbmanzana      = new DBManzana();
            Manzana        manzana        = new Manzana(dbmanzana);
            DBEstadoLote   dbestado       = new DBEstadoLote();
            EstadoLote     estado         = new EstadoLote(dbestado);

            LoteIngresoViewModels lote2 = new LoteIngresoViewModels();

            lote2 = lote.SelectForId(id);
            lote2.lotificadoras = lotifi.SelectAll();
            lote2.manzanas      = manzana.SelectAll();
            lote2.estados       = estado.SelectAll();
            return(View(lote2));
        }