public MembersController(eVotingContext context)
 {
     _context = context;
 }
 public MemberOfParliamentsController(eVotingContext context)
 {
     _context = context;
 }
예제 #3
0
 public ElectionsController(eVotingContext context)
 {
     _context = context;
 }
예제 #4
0
 public CandidatesController(eVotingContext context)
 {
     _context = context;
 }
 public PollingDivisionsController(eVotingContext context)
 {
     _context = context;
 }
예제 #6
0
 public PollingStationsController(eVotingContext context)
 {
     _context = context;
 }
예제 #7
0
 public ConstituenciesController(eVotingContext context)
 {
     _context = context;
 }
예제 #8
0
 public VotesController(eVotingContext context)
 {
     _context = context;
 }
예제 #9
0
 public PollingCentresController(eVotingContext context)
 {
     _context = context;
 }
예제 #10
0
 public PoliticalPartiesController(eVotingContext context)
 {
     _context = context;
 }
예제 #11
0
 public UsersController(UserManager <ApplicationUser> userManager, eVotingContext eVotingContext)
 {
     _userManager    = userManager;
     _eVotingContext = eVotingContext;
 }