15 lines
364 B
PHP
15 lines
364 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\QuoteLine;
|
|
|
|
interface QuoteLineRepositoryInterface
|
|
{
|
|
public function create(array $data): QuoteLine;
|
|
public function update(string $id, array $data): bool;
|
|
public function delete(string $id): bool;
|
|
public function find(string $id): ?QuoteLine;
|
|
public function getByQuoteId(string $quoteId);
|
|
}
|