Exemplo n.º 1
0
        // Eliminar
        public int Eliminar(NotasCE notasCE)
        {
            NotasCD notasCD  = new NotasCD();
            int     numFilas = notasCD.Eliminar(notasCE);

            return(numFilas);
        }
Exemplo n.º 2
0
        // Leer
        public List <NotasCE> Leer()
        {
            NotasCD        notasCD  = new NotasCD();
            List <NotasCE> notasCEs = notasCD.Leer();

            return(notasCEs);
        }
Exemplo n.º 3
0
        // Actualizar
        public int Actualizar(NotasCE notasCE)
        {
            NotasCD notasCD  = new NotasCD();
            int     numFilas = notasCD.Actualizar(notasCE);

            return(numFilas);
        }
Exemplo n.º 4
0
        // Crear
        public int Crear(NotasCE notasCE)
        {
            NotasCD notasCD = new NotasCD();
            int     nuevoId = notasCD.Crear(notasCE);

            return(nuevoId);
        }