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;
 }