Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created June 1, 2021 08:51
Show Gist options
  • Save ssukhpinder/5e18675888c7410063fd266eeb7ead38 to your computer and use it in GitHub Desktop.
Save ssukhpinder/5e18675888c7410063fd266eeb7ead38 to your computer and use it in GitHub Desktop.
public class ModelSedan : CarBuilder
{
public override void SetIsSUV()
{
_car.IsSUV = false;
}
public override void SetName()
{
_car.Name = "Maruti Sedan";
}
public override void SetSpeed()
{
_car.TopSpeed = 2000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment