Update design model of inventory to reflect new methods

This commit is contained in:
Paul Heimer 2023-11-24 17:00:34 +01:00 committed by Simon Bruder
parent f1f9539aae
commit cbe7d14a64
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC
2 changed files with 7 additions and 5 deletions

View file

@ -27,9 +27,11 @@ package catering {
+ InventoryController(inventory : UniqueInventory)
+ list(model : Model) : String
+ edit(model : Model, pid : Product) : String
+ edit(form : InventoryMutateForm, result : Errors, pid : Product) : String
+ add() : String
+ add(form : InventoryMutateForm, result : Errors) : String
+ edit(model : Model, pid : Product, form : InventoryMutateForm) : String
+ edit(form : InventoryMutateForm, result : Errors, pid : Product, model : Model) : String
+ add(model : Model) : String
+ add(model : Model, form : InventoryMutateForm) : String
+ add(form : InventoryMutateForm, result : Errors, model : Model) : String
+ delete(pid : Product) : String
}
InventoryController --> "1" catering.catalog.ConsumableCatalog : "-consumableCatalog"

Binary file not shown.