Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Last active November 3, 2023 20:44
Show Gist options
  • Save ahmetkucukoglu/bbb05ad89b1aa5f0bc9cbdf0b2b17d1d to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/bbb05ad89b1aa5f0bc9cbdf0b2b17d1d to your computer and use it in GitHub Desktop.
ConcreteState - CustomsClearedState
public class CustomsClearedState : ShipmentState
{
public override void OutForDelivery(Shipment shipment)
{
Console.WriteLine("The cargo is out for delivery.");
shipment.MoveTo(new OutForDeliveryState());
}
public override string ToString() => nameof(CustomsClearedState);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment