Skip to content

Instantly share code, notes, and snippets.

@sumutcan
Created March 22, 2012 19:40
Show Gist options
  • Select an option

  • Save sumutcan/2162732 to your computer and use it in GitHub Desktop.

Select an option

Save sumutcan/2162732 to your computer and use it in GitHub Desktop.
SSD to Code Example
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