PrescriptionRepository.php 279 B

123456789101112131415
  1. <?php
  2. namespace App\Contracts\Repositories\TCM;
  3. use Prettus\Repository\Contracts\RepositoryInterface;
  4. /**
  5. * Interface PrescriptionRepository.
  6. *
  7. * @package namespace App\Contracts\Repositories\TCM;
  8. */
  9. interface PrescriptionRepository extends RepositoryInterface
  10. {
  11. //
  12. }