Day 6: Business Rule Types and When to Use Each
GoalExplain before, after, async, and display in one sentence each.
DrillTake a real requirement (e.g. 'auto-assign on insert') and pick the right type. Defend it.
TakeawayBefore = mutate current. After = side effects on other records. Async = expensive work. Display = client-side prep. Pick wrong and you'll fight it for years.