Files
ai-code-exploration/src/Before/Order.cs
T
mostalive d60ea160c4 rewrite comments in neutral, terse style
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.
2026-09-15 17:26:15 +01:00

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; }
}