Esempio n. 1
0
        public static string Eliminar(int id_nota)
        {
            DNota Obj = new DNota();

            Obj.Id_nota = id_nota;

            return(Obj.Eliminar(Obj));
        }
Esempio n. 2
0
        public static DataTable buscarnombre(string textbuscar1, string textbuscar3)
        {
            DNota Obj = new DNota();

            Obj.TextBuscar1 = textbuscar1;
            Obj.TextBuscar3 = textbuscar3;
            return(Obj.BuscarNombre(Obj));
        }
Esempio n. 3
0
        public static string Insertar(int id_curso_alumno, int n1, int n2, int n3, int n4)
        {
            DNota Obj = new DNota();

            Obj.Id_curso_alumno = id_curso_alumno;
            Obj.N1 = n1;
            Obj.N2 = n2;
            Obj.N3 = n3;
            Obj.N4 = n4;
            return(Obj.Insertar(Obj));
        }