Help for this page

Select Code to Download


  1. or download this
    $md_config->{"[cust_num]"} = sub { $web_services->GetCustomerNumber(@_
    +) };
    
  2. or download this
    $md_config->{"[cust_num]"} = do {
      my $meth = $web_services->can("GetCustomerNumber");
      sub { unshift @_, $web_services; goto &$meth; }
    };