public CartItemModel(int qty, SellItemModel sellItem) { Qty = qty; if (sellItem == null) { SellItem = new SellItemModel(); } else { SellItem = sellItem; } }
public CellModel(int vmId, string cellId, SellItemModel sellItem, int itemQty) { VendingMachineId = vmId; CellId = cellId; if (sellItem == null) { SellItem = new SellItemModel(); } else { SellItem = sellItem; } SellItemQty = itemQty; }