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

            Objeto.ID = ID;
            return(Objeto.Anular(Objeto));
        }
Exemple #2
0
        public static string Eliminar(int ID)
        {
            DLabRef Objeto = new DLabRef();

            Objeto.ID = ID;
            return(Objeto.Eliminar(Objeto));
        }
Exemple #3
0
        public static string Insertar(string nombre)
        {
            DLabRef Objeto = new DLabRef();

            Objeto.Nombre = nombre;
            return(Objeto.Insertar(Objeto));
        }
Exemple #4
0
        public static string Editar(int ID, string nombre)
        {
            DLabRef Objeto = new DLabRef();

            Objeto.ID     = ID;
            Objeto.Nombre = nombre;
            return(Objeto.Editar(Objeto));
        }
Exemple #5
0
        public new static List <DLabRef> MostrarCombobox()
        {
            DLabRef Objeto = new DLabRef();

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

            return(Objeto.Mostrar(TextoBuscar));
        }