Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created May 30, 2021 08:36
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/001cc4870ee093cab1ac5eb2b6b44eaa to your computer and use it in GitHub Desktop.
Save ssukhpinder/001cc4870ee093cab1ac5eb2b6b44eaa to your computer and use it in GitHub Desktop.
public class CarDecorator : Car
{
protected Car _car;
public CarDecorator(Car car)
{
_car = car;
}
public override int CarPrice() => _car.CarPrice();
public override string GetName() =>_car.GetName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment