public override bool Equals(object obj) { Catalogo c = (Catalogo)obj; if (Seccion == c.Seccion && Discos == c.Discos) { return(true); } return(false); }
public static void actualizarCatalogo(Catalogo catalogo, ref bool error, ref String mensaje) { CatalogoDAL catalogoDAL = new CatalogoDAL(); catalogoDAL.actualizarCatalogo(catalogo, ref error, ref mensaje); }
public static void insertarCatalogo(Catalogo catalogo, ref bool error, ref String mensaje) { CatalogoDAL catalogoDAL = new CatalogoDAL(); catalogoDAL.insertarCatalogo(catalogo, ref error, ref mensaje); }