Skip to content

Instantly share code, notes, and snippets.

@arunprabug
Created June 3, 2020 23:15
Show Gist options
  • Select an option

  • Save arunprabug/915b116be4467ebf8ad78aa3ff2fbb28 to your computer and use it in GitHub Desktop.

Select an option

Save arunprabug/915b116be4467ebf8ad78aa3ff2fbb28 to your computer and use it in GitHub Desktop.
class Car
{
public void Maintenance10k () {
CheckBreakFluid();
CheckBatteryTerminals();
CheckEngineOil();
}
public void Maintenance30k () {
CheckBreakFluid();
CheckBatteryTerminals();
CheckEngineOil();
CheckSpareWheel
}
public void Maintenance50k () {
CheckBreakFluid();
CheckBatteryTerminals();
CheckEngineOil();
CheckSpareWheel
CheckGearbox
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment