Skip to content

Instantly share code, notes, and snippets.

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