Created
June 1, 2021 08:51
-
-
Save ssukhpinder/5e18675888c7410063fd266eeb7ead38 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 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