BoothRepository
in
Repository interface for Booth aggregates.
Table of Contents
Methods
- findById() : Booth|null
- Find a booth by its identifier.
- save() : void
- Persist changes to a booth aggregate.
- search() : BoothSearchResult
- Search booths using domain criteria.
Methods
findById()
Find a booth by its identifier.
public
findById(BoothId $id) : Booth|null
Parameters
- $id : BoothId
Return values
Booth|nullsave()
Persist changes to a booth aggregate.
public
save(Booth $booth) : void
Parameters
- $booth : Booth
search()
Search booths using domain criteria.
public
search(BoothSearchCriteria $criteria) : BoothSearchResult
Parameters
- $criteria : BoothSearchCriteria