private static void initializeMandolinInventory(Inventory inventory)
 {
     // Add Mandolins to the inventory ...
     inventory.addInstrument("X12345", 1745.55, new MandolinSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Adirondack, Style.A));
     inventory.addInstrument("Q21457", 1200.55, new MandolinSpec(Builder.Collings, "OakTown Goove", Type.acoustic, Wood.Brazilian_Rosewood, Wood.Cedar, Style.F));
     inventory.addInstrument("S95693", 1699.95, new MandolinSpec(Builder.Fender, "Stratocastor", Type.acoustic, Wood.Alder, Wood.Alder, Style.A));
 }
 private static void initializeBanjosInventory(Inventory inventory)
 {
     inventory.addInstrument("8900231", 2945.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Banjo },
         { "builder", Builder.Gibson },
         { "model", "RB-3" },
         { "type", Type.acoustic },
         { "backWood", Wood.Maple },
         { "style", Style.F }
     }));
 }
 private static void initializeMandolinInventory(Inventory inventory)
 {
     // Add Mandolins to the inventory ...
     inventory.addInstrument("X12345", 1745.55, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Mandolin },
         { "builder", Builder.Fender },
         { "model", "Stratocastor" },
         { "type", Type.electric },
         { "topWood", Wood.Alder },
         { "backWood", Wood.Adirondack },
         { "style", Style.A }
     }));
     inventory.addInstrument("Q21457", 1200.55, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Mandolin },
         { "builder", Builder.Collings },
         { "model", "OakTown Goove" },
         { "type", Type.acoustic },
         { "topWood", Wood.Brazilian_Rosewood },
         { "backWood", Wood.Cedar },
         { "style", Style.F }
     }));
     inventory.addInstrument("S95693", 1699.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Mandolin },
         { "builder", Builder.Fender },
         { "model", "Stratocastor" },
         { "type", Type.acoustic },
         { "topWood", Wood.Alder },
         { "backWood", Wood.Alder },
         { "style", Style.A }
     }));
     inventory.addInstrument("9019920", 5495.99, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Mandolin },
         { "builder", Builder.Gibson },
         { "model", "F5-G" },
         { "type", Type.acoustic },
         { "topWood", Wood.Maple },
         { "backWood", Wood.Maple },
         { "style", Style.F }
     }));
 }
 private static void initializeGuitarInventory(Inventory inventory)
 {
     // Add Guitars to the inventory ...
     inventory.addInstrument("V12345", 1345.55, new GuitarSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Adirondack, 6));
     inventory.addInstrument("A21457", 900.55, new GuitarSpec(Builder.Collings, "OakTown Goove", Type.acoustic, Wood.Brazilian_Rosewood, Wood.Cedar, 6));
     inventory.addInstrument("V95693", 1499.95, new GuitarSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Alder, 6));
     inventory.addInstrument("X54321", 430.54, new GuitarSpec(Builder.Martin, "Stratocastor Light", Type.electric, Wood.Indian_Rosewood, Wood.Maple, 6));
     inventory.addInstrument("X99876", 2000.00, new GuitarSpec(Builder.PRS, "Stratocastor FeatherWeight", Type.electric, Wood.Sitka, Wood.Cocobolo, 6));
     inventory.addInstrument("V9512", 1549.95, new GuitarSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Alder, 6));
 }
 private static void initializeGuitarInventory(Inventory inventory)
 {
     // Add Guitars to the inventory ...
     inventory.addInstrument("V12345", 1345.55, new GuitarSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Adirondack, 6));
     inventory.addInstrument("A21457", 900.55, new GuitarSpec(Builder.Collings, "OakTown Goove", Type.acoustic, Wood.Brazilian_Rosewood, Wood.Cedar, 6));
     inventory.addInstrument("V95693", 1499.95, new GuitarSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Alder, 6));
     inventory.addInstrument("X54321", 430.54, new GuitarSpec(Builder.Martin, "Stratocastor Light", Type.electric, Wood.Indian_Rosewood, Wood.Maple, 6));
     inventory.addInstrument("X99876", 2000.00, new GuitarSpec(Builder.PRS, "Stratocastor FeatherWeight", Type.electric, Wood.Sitka, Wood.Cocobolo, 6));
     inventory.addInstrument("V9512", 1549.95, new GuitarSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Alder, 6));
 }
 private static void initializeMandolinInventory(Inventory inventory)
 {
     // Add Mandolins to the inventory ...
     inventory.addInstrument("X12345", 1745.55, new MandolinSpec(Builder.Fender, "Stratocastor", Type.electric, Wood.Alder, Wood.Adirondack, Style.A));
     inventory.addInstrument("Q21457", 1200.55, new MandolinSpec(Builder.Collings, "OakTown Goove", Type.acoustic, Wood.Brazilian_Rosewood, Wood.Cedar, Style.F));
     inventory.addInstrument("S95693", 1699.95, new MandolinSpec(Builder.Fender, "Stratocastor", Type.acoustic, Wood.Alder, Wood.Alder, Style.A));
 }
 private static void initializeGuitarInventory(Inventory inventory)
 {
     // Add Guitars to the inventory ...
     inventory.addInstrument("V12345", 1345.55, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Fender },
         { "model", "Stratocastor" },
         { "type", Type.electric },
         { "topWood", Wood.Alder },
         { "backWood", Wood.Adirondack },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("A21457", 900.55, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Collings },
         { "model", "OakTown Goove" },
         { "type", Type.acoustic },
         { "topWood", Wood.Brazilian_Rosewood },
         { "backWood", Wood.Cedar },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("V95693", 1499.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Fender },
         { "model", "Stratocastor" },
         { "type", Type.electric },
         { "topWood", Wood.Alder },
         { "backWood", Wood.Adirondack },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("X54321", 430.54, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Martin },
         { "model", "Stratocastor Light" },
         { "type", Type.electric },
         { "topWood", Wood.Indian_Rosewood },
         { "backWood", Wood.Maple },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("X99876", 2000.00, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.PRS },
         { "model", "Stratocastor FeatherWeight" },
         { "type", Type.electric },
         { "topWood", Wood.Sitka },
         { "backWood", Wood.Cocobolo },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("V9512", 1549.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Fender },
         { "model", "Stratocastor" },
         { "type", Type.electric },
         { "topWood", Wood.Alder },
         { "backWood", Wood.Adirondack },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("11277", 3999.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Collings },
         { "model", "CJ" },
         { "type", Type.acoustic },
         { "topWood", Wood.Spruce },
         { "backWood", Wood.Indian_Rosewood },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("122784", 5495.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Martin },
         { "model", "D-18" },
         { "type", Type.acoustic },
         { "topWood", Wood.Adirondack },
         { "backWood", Wood.Mahogany },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("82765501", 1890.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Gibson },
         { "model", "SG'61" },
         { "type", Type.electric },
         { "topWood", Wood.Mahogany },
         { "backWood", Wood.Mahogany },
         { "numStrings", 6 }
     }));
     inventory.addInstrument("70108276", 2295.95, new InstrumentSpec(new Dictionary <string, object> {
         { "instrumentType", InstrumentType.Guitar },
         { "builder", Builder.Gibson },
         { "model", "Les Paul" },
         { "type", Type.electric },
         { "topWood", Wood.Maple },
         { "backWood", Wood.Maple },
         { "numStrings", 6 }
     }));
 }
 private static void initializeBanjosInventory(Inventory inventory)
 {
     inventory.addInstrument("8900231", 2945.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Banjo },
                                                                     { "builder", Builder.Gibson},
                                                                     { "model", "RB-3" },
                                                                     { "type", Type.acoustic},
                                                                     { "backWood", Wood.Maple},
                                                                     { "style", Style.F} }));
 }
 private static void initializeMandolinInventory(Inventory inventory)
 {
     // Add Mandolins to the inventory ...
     inventory.addInstrument("X12345", 1745.55, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Mandolin },
                                                                     { "builder", Builder.Fender},
                                                                     { "model", "Stratocastor" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Alder},
                                                                     { "backWood", Wood.Adirondack},
                                                                     { "style", Style.A} }));
     inventory.addInstrument("Q21457", 1200.55, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Mandolin },
                                                                     { "builder", Builder.Collings},
                                                                     { "model", "OakTown Goove" },
                                                                     { "type", Type.acoustic},
                                                                     { "topWood", Wood.Brazilian_Rosewood},
                                                                     { "backWood", Wood.Cedar},
                                                                     { "style", Style.F} }));
     inventory.addInstrument("S95693", 1699.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Mandolin },
                                                                     { "builder", Builder.Fender},
                                                                     { "model", "Stratocastor" },
                                                                     { "type", Type.acoustic},
                                                                     { "topWood", Wood.Alder},
                                                                     { "backWood", Wood.Alder},
                                                                     { "style", Style.A} }));
     inventory.addInstrument("9019920", 5495.99, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Mandolin },
                                                                     { "builder", Builder.Gibson},
                                                                     { "model", "F5-G" },
                                                                     { "type", Type.acoustic},
                                                                     { "topWood", Wood.Maple},
                                                                     { "backWood", Wood.Maple},
                                                                     { "style", Style.F} }));
 }
 private static void initializeGuitarInventory(Inventory inventory)
 {
     // Add Guitars to the inventory ...
     inventory.addInstrument("V12345", 1345.55, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Fender},
                                                                     { "model", "Stratocastor" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Alder},
                                                                     { "backWood", Wood.Adirondack},
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("A21457", 900.55, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Collings},
                                                                     { "model", "OakTown Goove" },
                                                                     { "type", Type.acoustic},
                                                                     { "topWood", Wood.Brazilian_Rosewood},
                                                                     { "backWood", Wood.Cedar},
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("V95693", 1499.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Fender},
                                                                     { "model", "Stratocastor" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Alder},
                                                                     { "backWood", Wood.Adirondack},
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("X54321", 430.54, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Martin},
                                                                     { "model", "Stratocastor Light" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Indian_Rosewood},
                                                                     { "backWood", Wood.Maple},
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("X99876", 2000.00, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.PRS},
                                                                     { "model", "Stratocastor FeatherWeight" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Sitka},
                                                                     { "backWood", Wood.Cocobolo},
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("V9512", 1549.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Fender},
                                                                     { "model", "Stratocastor" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Alder},
                                                                     { "backWood", Wood.Adirondack},
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("11277", 3999.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Collings},
                                                                     { "model", "CJ" },
                                                                     { "type", Type.acoustic},
                                                                     { "topWood", Wood.Spruce},
                                                                     { "backWood", Wood.Indian_Rosewood },
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("122784", 5495.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Martin},
                                                                     { "model", "D-18" },
                                                                     { "type", Type.acoustic},
                                                                     { "topWood", Wood.Adirondack},
                                                                     { "backWood", Wood.Mahogany },
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("82765501", 1890.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Gibson},
                                                                     { "model", "SG'61" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Mahogany},
                                                                     { "backWood", Wood.Mahogany },
                                                                     { "numStrings", 6} }));
     inventory.addInstrument("70108276", 2295.95, new InstrumentSpec(new Dictionary<string, object> {
                                                                     { "instrumentType", InstrumentType.Guitar },
                                                                     { "builder", Builder.Gibson},
                                                                     { "model", "Les Paul" },
                                                                     { "type", Type.electric},
                                                                     { "topWood", Wood.Maple},
                                                                     { "backWood", Wood.Maple },
                                                                     { "numStrings", 6} }));
 }