Advertisement
christiansalazarh

demo1-interface

Aug 29th, 2013
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. interface IDataSourceCampana {
  3.     public function leerCliente($cedula);
  4.     public function listarContratos($cedula);
  5.     public function listarCuotas($cedula, $numero_contrato);
  6.     public function importarCsv($filename);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement