Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            NotificacionesEN t = obj as NotificacionesEN;

            if (t == null)
            {
                return(false);
            }
            if (Id_notificacion.Equals(t.Id_notificacion))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 2
0
 public NotificacionesEN(NotificacionesEN notificaciones)
 {
     this.init(Id_notificacion, notificaciones.Usuario, notificaciones.Mensaje, notificaciones.Moderador);
 }