package
example
Type Members
-
-
case class
CheckInItemsToInventory(inventoryItemId: GUID, count: Int, originalVersion: Int) extends Command with Product with Serializable
-
case class
CreateInventoryItem(inventoryItemId: GUID, name: String) extends Command with Product with Serializable
-
case class
DeactivateInventoryItem(inventoryItemId: GUID, originalVersion: Int) extends Command with Product with Serializable
-
-
-
-
-
-
case class
InventoryItemDetailsDto(id: GUID, name: String, currentCount: Int, version: Int) extends Product with Serializable
-
case class
InventoryItemListDto(id: GUID, name: String) extends Product with Serializable
-
case class
InventoryItemRenamed(id: GUID, newName: String) extends DomainEvent with Product with Serializable
-
-
-
-
-
-
case class
RemoveItemsFromInventory(inventoryItemId: GUID, count: Int, originalVersion: Int) extends Command with Product with Serializable
-
case class
RenameInventoryItem(inventoryItemId: GUID, newName: String, originalVersion: Int) extends Command with Product with Serializable
Value Members
-