Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 30, 2021 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssukhpinder/5421dba5d6ec0d2d0194fc85ec388375 to your computer and use it in GitHub Desktop.
Save ssukhpinder/5421dba5d6ec0d2d0194fc85ec388375 to your computer and use it in GitHub Desktop.
public class Sunroof : CarDecorator
{
public Sunroof(Car car) : base(car)
{
}
public override int CarPrice() => _car.CarPrice() + 2000;
public override string GetName() => "Alto Lxi with Sunroof";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment