Beispiel #1
0
 public VotingController(IOptions <AppSettings> _appSettings, IAuthenticateHelper _authHelper)
 {
     appSettings = _appSettings.Value;
     facade      = new VotingFacade(appSettings.VotingPlatformConnectionString);
     authHelper  = _authHelper;
 }
Beispiel #2
0
 public Voting()
 {
     facade  = new VotingFacade(connectionString);
     request = new VotingRequest();
 }