Esempio n. 1
0
        // GET: Precio/Details/5
        public ActionResult Details(int id)
        {
            var biz    = new PrecioProcess();
            var Precio = biz.GetByID(id);

            return(View(Precio));
        }
Esempio n. 2
0
        // GET: Precio/Delete/5
        public ActionResult Delete(int id)
        {
            var biz    = new PrecioProcess();
            var precio = biz.GetByID(id);

            return(View(precio));
        }