Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / ApplicationCore / Entities / OrderAggregate / Address.cs
@Derek Comartin Derek Comartin on 27 Jul 2021 678 bytes Init
namespace Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate
{
    public class Address // ValueObject
    {
        public string Street { get; private set; }

        public string City { get; private set; }

        public string State { get; private set; }

        public string Country { get; private set; }

        public string ZipCode { get; private set; }

        private Address() { }

        public Address(string street, string city, string state, string country, string zipcode)
        {
            Street = street;
            City = city;
            State = state;
            Country = country;
            ZipCode = zipcode;
        }
    }
}