Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created June 1, 2021 08:45
Show Gist options
  • Save ssukhpinder/62b1f02ebbbf43af80675b3cec5e8f46 to your computer and use it in GitHub Desktop.
Save ssukhpinder/62b1f02ebbbf43af80675b3cec5e8f46 to your computer and use it in GitHub Desktop.
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