d2d.emegrendeles.hu/app/Repositories/SupplierRepositoryInterface.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

23 lines
724 B
PHP

<?php
namespace App\Repositories;
interface SupplierRepositoryInterface extends RepositoryBaseInterface
{
public function addContact($supplierId, $contactIds = []): bool;
public function removeContact($supplierId, $contactIds = []): bool;
public function syncContact($supplierId, $contactIds = []): bool;
public function addProductGroup($supplierId, $productGroupIds = []): bool;
public function removeProductGroup($supplierId, $productGroupIds = []): bool;
public function syncProductGroup($supplierId, $productGroupIds = []): bool;
public function syncService($supplierId, $productGroupIds = []): bool;
public function syncProfitCenter($supplierId, $profitCenterIds = []): bool;
}