Beispiel #1
0
 public void AddItem(ArmaturItem it)
 {
     if (Rods == null)
     {
         Rods = new List <ArmaturItem>();
     }
     Rods.Add(it);
 }
Beispiel #2
0
 public bool IsOwnItem(ArmaturItem tocheck)
 {
     if (tocheck.GOST == gost && tocheck.diameter == diam)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }