Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created November 3, 2023 19:45
Show Gist options
  • Save ahmetkucukoglu/c9ace4a565f313648b05a9da1fadc6e3 to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/c9ace4a565f313648b05a9da1fadc6e3 to your computer and use it in GitHub Desktop.
Demo - Shipment
var shipment = new Shipment(Guid.NewGuid(), "RU", "Istanbul")
shipment.ToInTransit();
shipment.ToInCustoms();
shipment.ToInCustomsCleared();
shipment.ToOutForDelivery();
shipment.ToNotDelivered();
shipment.ToDelivered();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment