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

19 lines
595 B
PHP

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