openclassify/addons/default/visiosoft/location-module/src/Village/Contract/VillageRepositoryInterface.php
2020-11-14 11:07:07 +03:00

9 lines
299 B
PHP

<?php namespace Visiosoft\LocationModule\Village\Contract;
use Anomaly\Streams\Platform\Entry\Contract\EntryRepositoryInterface;
interface VillageRepositoryInterface extends EntryRepositoryInterface
{
public function getByEntryIDsAndOrderByTransCol($entryIDs, $orderBy, $direction = 'asc');
}