Beispiel #1
0
        public override bool Equals(object obj)
        {
            Catalogo c = (Catalogo)obj;

            if (Seccion == c.Seccion && Discos == c.Discos)
            {
                return(true);
            }


            return(false);
        }
Beispiel #2
0
        public static void actualizarCatalogo(Catalogo catalogo, ref bool error, ref String mensaje)
        {
            CatalogoDAL catalogoDAL = new CatalogoDAL();

            catalogoDAL.actualizarCatalogo(catalogo, ref error, ref mensaje);
        }
Beispiel #3
0
        public static void insertarCatalogo(Catalogo catalogo, ref bool error, ref String mensaje)
        {
            CatalogoDAL catalogoDAL = new CatalogoDAL();

            catalogoDAL.insertarCatalogo(catalogo, ref error, ref mensaje);
        }