Beispiel #1
0
        // GET: MantenedorRegion
        public ActionResult InicioRegion()
        {
            ShippingPriceEntities db = new ShippingPriceEntities();

            db.Region.ToList();
            return(View(db.Region.ToList()));
        }
Beispiel #2
0
        // GET: MantenedorPeso
        public ActionResult InicioPeso()
        {
            ShippingPriceEntities db = new ShippingPriceEntities();

            db.Peso.ToList();
            return(View(db.Peso.ToList()));
        }
Beispiel #3
0
        // GET: Mantenedor
        public ActionResult Index()
        {
            ShippingPriceEntities db = new ShippingPriceEntities();

            //db.Precios.OrderByDescending


            db.Precios.ToList();
            return(View(db.Precios.ToList()));
        }