Skip to content

Instantly share code, notes, and snippets.

@mariobittencourt
Created July 15, 2020 23:47
Show Gist options
  • Save mariobittencourt/d356994c4566d1eaa303711f977aa275 to your computer and use it in GitHub Desktop.
Save mariobittencourt/d356994c4566d1eaa303711f977aa275 to your computer and use it in GitHub Desktop.
Updated Order Created Apply
class Order {
protected whenOrderCreated(event: OrderCreated): void {
this._items = event.items;
this._status = OrderStatus.OPEN;
this._amount = event.amount;
this._destination = event.destination;
this._customerId = event.customerId;
// New code
this.deliveryMethod = event.deliveryMethod;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment