public override bool Equals(object obj) { if (obj == null) { return(false); } RegistradoEN t = obj as RegistradoEN; if (t == null) { return(false); } if (Id.Equals(t.Id)) { return(true); } else { return(false); } }
public RegistradoEN(RegistradoEN registrado) { this.init(Id, registrado.Email, registrado.Nombre, registrado.Contrasenya, registrado.Fecha_nac, registrado.Telefono, registrado.FechaRegistro); }