コード例 #1
0
        public void Build(SupplyRecord supplyRecord, TExtendedInvoice extendedInvoice)
        {
            var saleCountryID = GetSaleCountryID(extendedInvoice);

            if (saleCountryID != MalaysiaCountryCode)
            {
                var country = GafRepository.GetCountry(saleCountryID);

                supplyRecord.Country = country.Description;
            }
        }