Beispiel #1
0
 public InventoryCheckpointEntity(InventoryCheckpoint InventoryCheckpoint, params object[] args) : base(InventoryCheckpoint)
 {
     foreach (object arg in args)
     {
         if (arg is Inventory Inventory)
         {
             InventoryEntity = new InventoryEntity(Inventory);
         }
     }
 }
Beispiel #2
0
 public OutputEntity(Output Output, params object[] args) : base(Output)
 {
     foreach (object arg in args)
     {
         if (arg is Inventory Inventory)
         {
             InventoryEntity = new InventoryEntity(Inventory);
         }
     }
 }