Guest User

Untitled

a guest
Aug 9th, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. My entities have only setters and getters but no methods - design failure -
  2. public class Account {
  3. public AccountId Id { get; set; }
  4. public Person Customer {get; set; }
  5.  
  6. public void Credit(Money amount) { ... }
  7. public void Debit(Money amount) { ... }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment