InventoryItemDetails Handle(GetDetails _) { CheckCreated(); return(new InventoryItemDetails { Name = name, Total = total, Active = active }); }
InventoryItemDetails Handle(GetDetails query) { return(new InventoryItemDetails(name, total, active)); }