public PollController(IPollDac pollDac, IAccountDac accDac)
 {
     this.pollDac = pollDac;
     this.accDac  = accDac;
 }
Example #2
0
 public HomeController()
 {
     pollDac   = new PollDac();
     choiceDac = new ChoiceDac();
 }