Storm\Api\Base\Storm::ConstructRepository PHP Метод

ConstructRepository() защищенный Метод

Instantiates a new repository for the specified entity type.
protected ConstructRepository ( string $EntityType ) : Repository
$EntityType string The entity of which the repository represents
Результат Repository The instantiated repository
    protected function ConstructRepository($EntityType)
    {
        return new Repository($this->DomainDatabaseMap, $this->FunctionToASTConverter, $EntityType);
    }