Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 11th, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. require_once 'Factura.php';
  3. require_once 'FacturaDetalle.php';
  4.  
  5. abstract Index
  6. {
  7.    public static function main()
  8.    {
  9.       $factura = new Factura();
  10.  
  11.       // Agrego 4 detalles a la factura
  12.  
  13.       $factura->addDetalle(new FacturaDetalle());
  14.       $factura->addDetalle(new FacturaDetalle());
  15.       $factura->addDetalle(new FacturaDetalle());
  16.       $factura->addDetalle(new FacturaDetalle());
  17.    }
  18. }
  19. Index::main();