-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
namespace PetStore.Core.DomainObjects.Foundation | ||
{ | ||
/// <summary> | ||
/// Address entity | ||
/// http://en.wikipedia.org/wiki/Address_(geography) | ||
/// </summary> | ||
public class Address | ||
{ | ||
#region Public Properties | ||
|
||
/// <summary> | ||
/// Address ID | ||
/// </summary> | ||
public virtual int Id { get; set; } | ||
|
||
/// <summary> | ||
/// Address street name | ||
/// </summary> | ||
public virtual string Street { get; set; } | ||
|
||
/// <summary> | ||
/// Address number | ||
/// </summary> | ||
public virtual string Number { get; set; } | ||
|
||
/// <summary> | ||
/// Address district/neighborhood | ||
/// </summary> | ||
public virtual string District { get; set; } | ||
|
||
/// <summary> | ||
/// Address city/town/locality | ||
/// </summary> | ||
public virtual string City { get; set; } | ||
|
||
/// <summary> | ||
/// Address State/Province/Region | ||
/// </summary> | ||
public virtual string State { get; set; } | ||
|
||
/// <summary> | ||
/// Address country | ||
/// </summary> | ||
public virtual Country Country { get; set; } | ||
|
||
/// <summary> | ||
/// Address ZIP/Postal Code | ||
/// </summary> | ||
public virtual string PostalCode { get; set; } | ||
|
||
/// <summary> | ||
/// Address additional information | ||
/// </summary> | ||
public virtual string AdditionalInformation { get; set; } | ||
|
||
#endregion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters