Skip to content

Instantly share code, notes, and snippets.

@hsynkrcf
Created November 9, 2022 22:22
Show Gist options
  • Save hsynkrcf/e2d992934d41cb405b3852ddf50b37b8 to your computer and use it in GitHub Desktop.
Save hsynkrcf/e2d992934d41cb405b3852ddf50b37b8 to your computer and use it in GitHub Desktop.
OCP
public class Phone
{
public PhoneType Type { get; set; }
}
public enum PhoneType
{
Iphone,
Samsung
}
public class Iphone : Phone
{
public Iphone()
{
this.Type = PhoneType.Iphone;
}
}
public class Samsung : Phone
{
public Samsung()
{
this.Type = PhoneType.Samsung;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment