Files
contabilidad/api/common/Concept/Factory/Model.php
Aldarien a9968dec58 Version 3.0
New technologies
2022-08-05 21:28:59 -04:00

11 lines
203 B
PHP

<?php
namespace Common\Concept\Factory;
use Common\Concept\Model as ModelInterface;
use Common\Concept\Repository;
interface Model
{
public function find(ModelInterface $model_name): Repository;
}