public Collections() { for (int row = 0; row < 9; row++) { for (int col = 0; col < 6; col++) { atoolMatrix[row, col] = new ToolCollection(); } } }
public Tooltype(String name) { this.Name = name; this.Tools = new ToolCollection(); }