예제 #1
0
 public AccountController(IAccountDac accDac)
 {
     this.accDac = accDac;
 }
예제 #2
0
 public PollController(IPollDac pollDac, IAccountDac accDac)
 {
     this.pollDac = pollDac;
     this.accDac  = accDac;
 }
예제 #3
0
 private AccountBc()
 {
     this._accountDac = DacFactoryClient.GetFactory().GetAccountDac();
 }