2018-07-15 15:40:00 +02:00

16 lines
233 B
PHP

<?php
namespace repository\order;
use entity\order\OrderInterface as OrderEntityInterface;
/**
*
* @author kevinfrantz
*
*/
interface OrderInterface
{
public function saveOrder(OrderEntityInterface $order):bool;
}