public void Handle(InventoryItemRemoved @event) { _readDocumentStore.Documents["Inventory"].Remove(@event.Id); }
private void Apply(InventoryItemRemoved e) { _activated = false; }
public static void OnInventoryItemRemoved(InventoryItemType type, string id, int count) { InventoryItemRemoved?.Invoke(type, id, count); }