//TODO
        public bool equals(Object o)
        {
            if (this == o)
            {
                return(true);
            }
            if (o == null || o.GetType() != this.GetType())
            {
                return(false);
            }

            CadernoDeNotas u = (CadernoDeNotas)o;

            return(ID.Equals(u.Id));
        }
 /**
  * Constructor with CadernoDeNotas
  * */
 public CadernoDeNotas(CadernoDeNotas u)
 {
     ID = u.Id;
 }