Ejemplo n.º 1
0
 public HashChainEntry(int anahtar, object deger, string durum, Sirket sirket)
 {
     this.anahtar = anahtar;
     this.durum   = durum;
     this.deger   = deger;
     this.next    = null;
     this.sirket  = sirket;
 }
 public HashChainEntry(int anahtar, object deger)
 {
     this.anahtar = anahtar;
     this.deger   = deger;
     this.next    = null;
 }