Example #1
0
        public static string Anular(int ID)
        {
            DGrupoExamen Objeto = new DGrupoExamen();

            Objeto.ID = ID;
            return(Objeto.Anular(Objeto));
        }
Example #2
0
        public static string Insertar(string nombre)
        {
            DGrupoExamen Objeto = new DGrupoExamen();

            Objeto.Nombre = nombre;
            return(Objeto.Insertar(Objeto));
        }
Example #3
0
        public static string Editar(int ID, string nombre)
        {
            DGrupoExamen Objeto = new DGrupoExamen();

            Objeto.ID     = ID;
            Objeto.Nombre = nombre;
            return(Objeto.Editar(Objeto));
        }
Example #4
0
        public new static List <DGrupoExamen> MostrarCombobox()
        {
            DGrupoExamen Objeto = new DGrupoExamen();

            return(Objeto.MostrarCombobox());
        }
Example #5
0
        //probar esta nueva version, NUEVA VERSION
        public new static List <DGrupoExamen> Mostrar(string TextoBuscar)
        {
            DGrupoExamen Objeto = new DGrupoExamen();

            return(Objeto.Mostrar(TextoBuscar));
        }