Brak opisu

ProgramRepositoryInterface.php 108B

123456789
  1. <?php
  2. interface ProgramRepositoryInterface {
  3. public function selectAll();
  4. public function find($id);
  5. }