Exemplo n.º 1
0
        public void EnviarNotificacionReporteComentario(int p_oid, YoureOnGenNHibernate.EN.YoureOn.ComentarioEN comentario, YoureOnGenNHibernate.EN.YoureOn.ModeradorEN moderador)
        {
            /*PROTECTED REGION ID(YoureOnGenNHibernate.CEN.YoureOn_ReporteComentario_enviarNotificacionReporteComentario) ENABLED START*/

            // Write here your custom code...

            throw new NotImplementedException("Method EnviarNotificacionReporteComentario() not yet implemented.");

            /*PROTECTED REGION END*/
        }
Exemplo n.º 2
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            ComentarioEN t = obj as ComentarioEN;

            if (t == null)
            {
                return(false);
            }
            if (Id_comentario.Equals(t.Id_comentario))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 3
0
 public ComentarioEN(ComentarioEN comentario)
 {
     this.init(Id_comentario, comentario.Texto, comentario.Fecha, comentario.Usuario, comentario.Valoracion_comentario, comentario.Contenido, comentario.ReporteComentario);
 }