Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Single string address
- var organization = new Organization()
- {
- Address = "123 Old Kent Road E10 6RL"
- };
- // Multiple string addresses
- var organization = new Organization()
- {
- Address = new List<string>()
- {
- "123 Old Kent Road E10 6RL",
- "456 Finsbury Park Road SW1 2JS"
- }
- };
- // Single PostalAddress address
- var organization = new Organization()
- {
- Address = new PostalAddress()
- {
- StreetAddress = "123 Old Kent Road",
- PostalCode = "E10 6RL"
- }
- };
- // Multiple PostalAddress addresses
- var organization = new Organization()
- {
- Address = new List<PostalAddress>()
- {
- new PostalAddress()
- {
- StreetAddress = "123 Old Kent Road",
- PostalCode = "E10 6RL"
- },
- new PostalAddress()
- {
- StreetAddress = "456 Finsbury Park Road",
- PostalCode = "SW1 2JS"
- }
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment