Example #1
0
 public ElectionsRepo(ElectionsContext dbContext) : base(dbContext)
 {
 }
 public CandidatesRepository(ElectionsContext electionContext)
 {
     _electionContext = electionContext;
 }
Example #3
0
 public DistrictsRepo(ElectionsContext dbContext) : base(dbContext)
 {
 }
 public CandidatRepository(ElectionsContext context)
 {
     db = context;
 }
Example #5
0
 public UserRepository(ElectionsContext context)
 {
     db = context;
 }
        public GenericRepository(ElectionsContext context)


        {
            _context = context;
        }
Example #7
0
 public AppealRepository(ElectionsContext context)
 {
     db = context;
 }
Example #8
0
 public AddressRepository(ElectionsContext context)
 {
     db = context;
 }
 public CategoryRepository(ElectionsContext electionContext)
 {
     _electionContext = electionContext;
 }
Example #10
0
 public CommunitisRepo(ElectionsContext dbContext) : base(dbContext)
 {
 }
Example #11
0
 public ABUnitOfWork(ElectionsContext context)
 {
     db = context;
 }
 public DistrictRepository(ElectionsContext context)
 {
     db = context;
 }
Example #13
0
 public PartisInfoRepo(ElectionsContext dbContext) : base(dbContext)
 {
 }
 public PecMemberElectResultRepo(ElectionsContext dbContext) : base(dbContext)
 {
 }
Example #15
0
 public RoleRepository(ElectionsContext context)
 {
     db = context;
 }
 public ChermanOfPollingStationRepository(ElectionsContext context)
 {
     db = context;
 }
 public ChermanOfDistrictRepository(ElectionsContext context)
 {
     db = context;
 }
 public ComplaintTypeRepository(ElectionsContext context)
 {
     db = context;
 }
Example #19
0
 public CitizenRepository(ElectionsContext context)
 {
     db = context;
 }
Example #20
0
 public VotersRepository(ElectionsContext electionContext)
 {
     _electionContext = electionContext;
 }
Example #21
0
 public StatusRepository(ElectionsContext context)
 {
     db = context;
 }