<?php
namespace App\Repository\__Accounting\PartnerTemplate;
use App\Entity\__Accounting\PartnerTemplate\PartnerTemplateContent;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @method PartnerTemplateContent|null find($id, $lockMode = null, $lockVersion = null)
* @method PartnerTemplateContent|null findOneBy(array $criteria, array $orderBy = null)
* @method PartnerTemplateContent[] findAll()
* @method PartnerTemplateContent[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class PartnerTemplateContentRepository extends ServiceEntityRepository
{
const PARTNER_TEMPLATE_CONTENT_LIST_ORDER_DIRECTION_ASC = "asc";
const PARTNER_TEMPLATE_CONTENT_LIST_ORDER_DIRECTION_DESC = "desc";
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, PartnerTemplateContent::class);
}
}