Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Last active November 3, 2023 20:44
Show Gist options
  • Save ahmetkucukoglu/6c2179a2a11c5a8ac660f503a58341e2 to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/6c2179a2a11c5a8ac660f503a58341e2 to your computer and use it in GitHub Desktop.
ConcreteState - DeliveredState
public class DeliveredState : ShipmentState
{
public override string ToString() => nameof(DeliveredState);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment