public NoListaET(double ymax, double xmin, double incrX, NoListaET prox, NoListaET ant)
 {
     Ymax      = ymax;
     Xmin      = xmin;
     IncrX     = incrX;
     this.prox = prox;
     this.ant  = ant;
 }
 public ListaET()
 {
     inicio = null;
 }