# `Dialup.CommandedContext`
[🔗](https://github.com/SouichiroTsujimoto/Dialup/blob/main/lib/commanded_context.ex#L1)

Application-service facade for Commanded bounded contexts.

Use in a context module:

    defmodule MyApp.Ordering do
      use Dialup.CommandedContext, app: MyApp.CommandedApp

      alias MyApp.Ordering.Commands.AddItem
    end

Dispatches default to `consistency: :strong` so read models are up to date
before the page remounts.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
