Created
June 3, 2020 23:16
-
-
Save arunprabug/dcae5dec6c09fdfa5adf00f08fcdebb1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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