Пример #1
0
        public void getDetailVATWithVerification(string requesterCountryCode, string requesterVatNumber)
        {
            this.requesterCountryCode = requesterCountryCode;
            this.requesterVatNumber   = requesterVatNumber;
            eu.europa.ec.checkVatService checkVatService = new eu.europa.ec.checkVatService();

            requestDate = checkVatService.checkVatApprox(ref countryCode, ref vatNumber, ref traderName, ref traderCompanyType, ref traderStreet,
                                                         ref traderPostcode, ref traderCity, requesterCountryCode, requesterVatNumber, out valid, out traderAddress, out _, out bool traderNameMatchSpecified,
                                                         out _, out bool traderCompanyTypeMatchSpecified, out _, out bool traderStreetMatchSpecified, out _, out bool traderPostcodeMatchSpecified, out _, out bool traderCirtyMatchSpecified, out requestIdentifier);
        }
Пример #2
0
 public void getDetailVAT()
 {
     eu.europa.ec.checkVatService checkVatService = new eu.europa.ec.checkVatService();
     requestDate = checkVatService.checkVat(ref countryCode, ref vatNumber, out valid, out traderName, out traderAddress);
 }