Ejemplo n.º 1
0
        public static string Anular(int ID)
        {
            DLabRef Objeto = new DLabRef();

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

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

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

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

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

            return(Objeto.Mostrar(TextoBuscar));
        }