예제 #1
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            BusquedaEN t = obj as BusquedaEN;

            if (t == null)
            {
                return(false);
            }
            if (IdBusqueda.Equals(t.IdBusqueda))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
예제 #2
0
 public BusquedaEN(BusquedaEN busqueda)
 {
     this.init(IdBusqueda, busqueda.Usuario, busqueda.Filtros, busqueda.Resultado);
 }