get all bids of freight order
This commit is contained in:
parent
14e77d2885
commit
fa156fd155
5 changed files with 80 additions and 0 deletions
|
|
@ -6,4 +6,9 @@ interface BidRepository
|
|||
{
|
||||
public function save(Bid $bid): Bid;
|
||||
public function find(string $id): ?Bid;
|
||||
|
||||
/**
|
||||
* @return Bid[]
|
||||
*/
|
||||
public function findByFreightOrderId(int $freightOrderId): array;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue