CompanyInfo
ArchiveInvoice.CompanyInfo = null;public class PartyInfoDto : AddressInfoDto
{
public string TaxNumber { get; set; }
public string Name { get; set; }
public string TaxOffice { get; set; }
public List<IDTypeDto> PartyIdentifications { get; set; }
public List<IDTypeDto> AgentPartyIdentifications { get; set; }
}public class AddressInfoDto
{
public string Address { get; set; }
public string District { get; set; }
public string City { get; set; }
public string Country { get; set; }
public string PostalCode { get; set; }
public string Phone { get; set; }
public string Fax { get; set; }
public string Mail { get; set; }
public string WebSite { get; set; }
}TaxNumber
Name
TaxOffice
Address
District
City
Country
PostalCode
Phone
Fax
Mail
WebSite
PartyIdentifications
AgentPartyIdentifications
Last updated