Пример #1
0
        public Vat ReadVat(string vatCode)
        {
            var command = new ReadVatCommand
            {
                Office  = session.Office,
                VatCode = vatCode
            };
            var response = processXml.Process(command.ToXml());

            return(Vat.FromXml(response));
        }