public override bool Equals(object obj) { if (obj == null) { return(false); } ReporteComentarioEN t = obj as ReporteComentarioEN; if (t == null) { return(false); } if (Id_reporte.Equals(t.Id_reporte)) { return(true); } else { return(false); } }
public ReporteComentarioEN(ReporteComentarioEN reporteComentario) { this.init(Id_reporte, reporteComentario.Comentario, reporteComentario.Fecha); }