Created
June 1, 2021 08:50
-
-
Save ssukhpinder/e69a98eeb0ff04437344781d9e596523 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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