MCPcopy Create free account
hub / github.com/InterviewReady/Low-Level-Design / addProduct

Method addProduct

InventorySystem.java:11–13  ·  view source on GitHub ↗
(Product product)

Source from the content-addressed store, hash-verified

9 static Map<Location, Unit> locationMap = new HashMap<>();
10
11 public static void addProduct(Product product) {
12 productMap.put(product.id, product);
13 }
14
15 public static Product getProduct(String product) {
16 return productMap.get(product);

Callers 1

addProductMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected