Files
contabilidad/api/common/Concept/Factory/Model.php

11 lines
203 B
PHP
Raw Normal View History

2022-08-05 21:28:59 -04:00
<?php
namespace Common\Concept\Factory;
use Common\Concept\Model as ModelInterface;
use Common\Concept\Repository;
interface Model
{
public function find(ModelInterface $model_name): Repository;
}