2017-01-17 18:32:40 -08:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate
|
2016-11-21 12:41:36 +01:00
|
|
|
|
{
|
|
|
|
|
using Microsoft.eShopOnContainers.Services.Ordering.Domain.SeedWork;
|
|
|
|
|
using System;
|
|
|
|
|
|
2017-01-12 17:09:23 -08:00
|
|
|
|
//(CDLTLL)
|
|
|
|
|
//TO DO: Need to convert this entity to a Value-Object (Address VO)
|
2016-11-21 12:41:36 +01:00
|
|
|
|
public class Address
|
|
|
|
|
: Entity
|
|
|
|
|
{
|
2016-11-24 14:59:25 +01:00
|
|
|
|
public String Street { get; set; }
|
2016-11-21 12:41:36 +01:00
|
|
|
|
|
2016-11-24 14:59:25 +01:00
|
|
|
|
public String City { get; set; }
|
2016-11-21 12:41:36 +01:00
|
|
|
|
|
2016-11-24 14:59:25 +01:00
|
|
|
|
public String State { get; set; }
|
2016-11-21 12:41:36 +01:00
|
|
|
|
|
2016-11-24 14:59:25 +01:00
|
|
|
|
public String Country { get; set; }
|
2016-11-21 12:41:36 +01:00
|
|
|
|
|
2016-11-24 14:59:25 +01:00
|
|
|
|
public String ZipCode { get; set; }
|
2016-11-21 12:41:36 +01:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|