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

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

            return(View(precio));
        }