public static string Eliminar(int ideditorial) { DEditorial Obj = new DEditorial(); Obj.IdEditorial = ideditorial; return(Obj.Eliminar(Obj)); }
public static DataTable BuscarEditorial(string editorial) { DEditorial Obj = new DEditorial(); Obj.Editorial = editorial; return(Obj.BuscarNombreEditorial(Obj)); }
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)); }