Created
March 22, 2012 19:40
-
-
Save sumutcan/2162732 to your computer and use it in GitHub Desktop.
SSD to Code Example
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
| public class Customer | |
| { | |
| ATM teller; | |
| teller.withdrawCash(acountnumber,amount); | |
| } | |
| public class ATM | |
| { | |
| public Money withdrawCash(String accountNumber, Money amount) | |
| { | |
| //buraya çeşitli kodlar gelecek. | |
| return cash; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment