Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 9th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. }