QueryTaxpayerRequestXml.php 296 B

1234567891011121314151617
  1. <?php
  2. namespace NavOnlineInvoice;
  3. class QueryTaxpayerRequestXml extends BaseRequestXml {
  4. protected $rootName = "QueryTaxpayerRequest";
  5. function __construct($config, $taxNumber) {
  6. parent::__construct($config);
  7. $this->xml->addChild("taxNumber", $taxNumber);
  8. }
  9. }