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

            if (t == null)
            {
                return(false);
            }
            if (Id_reporte.Equals(t.Id_reporte))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #2
0
 public ReporteEN(ReporteEN reporte)
 {
     this.init(Id_reporte, reporte.Fecha);
 }