Created
June 1, 2021 08:45
-
-
Save ssukhpinder/62b1f02ebbbf43af80675b3cec5e8f46 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 abstract class CarBuilder | |
{ | |
protected readonly Car _car = new Car(); | |
public abstract void SetName(); | |
public abstract void SetSpeed(); | |
public abstract void SetIsSUV(); | |
public virtual Car GetCar() => _car; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment