﻿
function Address(addressLines, city, subDivision, postalCode, country) {
    this.AddressLine = addressLines;
    this.PrimaryCity = city;
    this.Subdivision = subDivision;
    this.PostalCode = postalCode;
    this.CountryRegion = country;
}