Created
November 3, 2023 19:45
-
-
Save ahmetkucukoglu/c9ace4a565f313648b05a9da1fadc6e3 to your computer and use it in GitHub Desktop.
Demo - Shipment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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