Created
June 3, 2020 23:15
-
-
Save arunprabug/915b116be4467ebf8ad78aa3ff2fbb28 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 () { | |
| 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