public IndexModel(ILogger <IndexModel> logger,
                   ElectionsDbContext dbContext)
 {
     _logger    = logger;
     _dbContext = dbContext;
     Input      = new ParlamentaryElection();
 }
示例#2
0
 public RegionService(ElectionsDbContext dbContext) : base(dbContext)
 {
 }
示例#3
0
 public SubDistrictService(ElectionsDbContext dbContext) : base(dbContext)
 {
 }
示例#4
0
 public LocationService(ElectionsDbContext context)
 {
     _context = context;
 }
示例#5
0
        public Repository(ElectionsDbContext context)


        {
            _context = context;
        }
示例#6
0
 public CommunityService(ElectionsDbContext dbContext) : base(dbContext)
 {
 }