Exemplo n.º 1
0
 public IndexModel(IVotingServices votingServices)
 {
     this.votingServices = votingServices;
 }
Exemplo n.º 2
0
 public AdminController(IVotingServices votingServices,
                        IOptions <AppSettings> appSettings)
 {
     _votingServices = votingServices;
     _appSettings    = appSettings.Value;
 }
Exemplo n.º 3
0
 public VoteController(IVotingServices votingServices,
                       IHubContext <VoteHub, IVoteHub> hubContext)
 {
     _votingServices = votingServices;
     _hubContext     = hubContext;
 }
Exemplo n.º 4
0
 public ResultsModel(IVotingServices votingServices)
 {
     this.votingServices = votingServices;
 }