Beispiel #1
0
        public static string Eliminar(int ideditorial)
        {
            DEditorial Obj = new DEditorial();

            Obj.IdEditorial = ideditorial;
            return(Obj.Eliminar(Obj));
        }
Beispiel #2
0
        public static DataTable BuscarEditorial(string editorial)
        {
            DEditorial Obj = new DEditorial();

            Obj.Editorial = editorial;
            return(Obj.BuscarNombreEditorial(Obj));
        }
Beispiel #3
0
        public static string Insertar(string editorial, string tipoeditor, string anioalta)
        {
            DEditorial Obj = new DEditorial();

            Obj.Editorial  = editorial;
            Obj.TipoEditor = tipoeditor;
            Obj.AnioAlta   = anioalta;

            return(Obj.Insertar(Obj));
        }