Doc comments, inline comments, and README no longer editorialize about the code (ActiveRecord, leak, fake, Yak before/after). They now describe behavior only. Test A_client_can_reach_its_DbContext__the_leak renamed to A_client_can_reach_its_DbContext. No behavior changes; all 27 tests pass.
12 lines
352 B
C#
12 lines
352 B
C#
namespace Before;
|
|
|
|
/// <summary>An order belonging to a <see cref="Client"/>.</summary>
|
|
public class Order : DbBase
|
|
{
|
|
/// <summary>Free-text description.</summary>
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
/// <summary>The owning client; set by <see cref="ClientOrders"/>.</summary>
|
|
public Client? Client { get; set; }
|
|
}
|