Exemplo n.º 1
0
        // GET: Seccion/Delete/5
        public ActionResult Delete(int?id)
        {
            var nota = SeccionRepository.GetSeccion(id);

            return(View(nota));
        }
Exemplo n.º 2
0
        // GET: Seccion/Details/5
        public ActionResult Details(int id)
        {
            var secciones = SeccionRepository.GetSeccion(id);

            return(View(secciones));
        }
Exemplo n.º 3
0
        // GET: Seccion/Edit/5
        public ActionResult Edit(int id)
        {
            var seccion = SeccionRepository.GetSeccion(id);

            return(View(seccion));
        }