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

            if (t == null)
            {
                return(false);
            }
            if (Id.Equals(t.Id))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 2
0
 public NotificacionEN(NotificacionEN notificacion)
 {
     this.init(Id, notificacion.Titulo, notificacion.Mensaje, notificacion.NotificacionesGeneradas, notificacion.Fecha);
 }