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