Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Last active November 3, 2023 20:43
Show Gist options
  • Save ahmetkucukoglu/2d5a2278e41064fda287e024819381e2 to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/2d5a2278e41064fda287e024819381e2 to your computer and use it in GitHub Desktop.
ConcreteState - InCustomsState
public class InCustomsState : ShipmentState
{
public override void CustomsCleared(Shipment shipment)
{
Console.WriteLine("Customs clearance procedures have been completed.");
shipment.MoveTo(new CustomsClearedState());
}
public override string ToString() => nameof(InCustomsState);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment