freight order repo and fake impls of find and save

This commit is contained in:
Yisroel Baum 2025-11-12 22:10:20 +02:00
parent 3be8eee948
commit 6ad041a945
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
2 changed files with 59 additions and 3 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace FreightQuote\FreightOrder;
interface FreightOrderRepository
{
public function find(int $id): ?FreightOrder;
public function save(FreightOrder $freightOrder): FreightOrder;
}