. */ namespace SP\Domain\Account\Ports; use SP\Domain\Account\Dtos\AccountCacheDto; /** * Class AccountCacheService */ interface AccountCacheService { /** * Devolver los accesos desde la caché */ public function getCacheForAccount(int $accountId, int $dateEdit): AccountCacheDto; }