Skip to content

Instantly share code, notes, and snippets.

@arunprabug
Created June 3, 2020 23:16
Show Gist options
  • Save arunprabug/dcae5dec6c09fdfa5adf00f08fcdebb1 to your computer and use it in GitHub Desktop.
Save arunprabug/dcae5dec6c09fdfa5adf00f08fcdebb1 to your computer and use it in GitHub Desktop.
class Car
{
public void Maintenance10k () {
BaseMaintenance()
}
public void Maintenance30k () {
BaseMaintenance()
CheckSpareWheel
}
public void Maintenance50k () {
BaseMaintenance()
CheckSpareWheel
CheckGearbox
}
public void BaseMaintenance() {
CheckBreakFluid();
CheckBatteryTerminals();
CheckEngineOil();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment