public void dodaj(RezistivniElement rez)
 {
     if (rez.Re <= 0 || rez == null)
     {
         throw new ArgumentOutOfRangeException();
     }
     else
     {
         this.lista.Add(rez);
     }
 }
 public int brojElemenata(RezistivniElement elem)
 {
     return(this.lista.Count);
 }