root/StructuredWeb/StructuredWeb/Domain/Business/Order.cs
| 93 | 107 | ||
|---|---|---|---|
1 | #region Using Statements | 1 | #region Using Statements |
2 | 2 | ||
3 | using System; | 3 | using System; |
4 | using System.Diagnostics; | ||
4 | using StructuredWeb.Domain.Business.Component; | 5 | using StructuredWeb.Domain.Business.Component; |
5 | 6 | ||
6 | #endregion | 7 | #endregion |
7 | 8 | ||
8 | namespace StructuredWeb.Domain.Business | 9 | namespace StructuredWeb.Domain.Business |
9 | { | 10 | { |
11 | [Serializable] | ||
12 | [DebuggerDisplay("Id = {Id}, Customer = {Customer.Person.LastName}, Employee = {Employee.Person.LastName}")] | ||
10 | public class Order | 13 | public class Order |
11 | { | 14 | { |
12 | private Address _address; | 15 | private Address _address; |
Download diff