In between commit implementing order repository

This commit is contained in:
Kevin Frantz
2018-07-15 15:40:00 +02:00
parent 3fdcd47e9c
commit aa18f2b18e
3 changed files with 45 additions and 6 deletions

View File

@@ -10,11 +10,6 @@ use entity\order\OrderInterface as OrderEntityInterface;
*/
interface OrderInterface
{
public function saveOrder(OrderEntityInterface $order):void;
/**
* This function just exists for maintaining reasons
*/
public function deleteAllOrders():void;
public function saveOrder(OrderEntityInterface $order):bool;
}