Exemplo n.º 1
0
 public HomeController(
     ICategoryRepository _categoryRepository,
     ILocalityRepository _localityRepository)
 {
     categoryRepository = _categoryRepository;
     localityRepository = _localityRepository;
 }
Exemplo n.º 2
0
 public AccountController(UserManager <User> userManager, SignInManager <User> signInManager,
                          IRegionRepository regionRepository, ILocalityRepository localityRepository, ISportClubRepository sportClubRepository)
 {
     this.userManager         = userManager;
     this.signInManager       = signInManager;
     this.regionRepository    = regionRepository;
     this.localityRepository  = localityRepository;
     this.sportClubRepository = sportClubRepository;
 }
Exemplo n.º 3
0
 public PostCargoService(ICountryRepository countryRepository, ILocalityRepository localityRepository,
                         IRepository <Location> locationRepository, IRepository <CargoSpecification> cargospecRepository,
                         IPostCargoRepository postCargoRepository)
 {
     _countryRepository   = countryRepository;
     _localityRepository  = localityRepository;
     _locationRepository  = locationRepository;
     _cargospecRepository = cargospecRepository;
     _postCargoRepository = postCargoRepository;
 }
Exemplo n.º 4
0
 public PostTransportService(ICountryRepository countryRepository, ILocalityRepository localityRepository,
                             IRepository <Location> locationRepository, IRepository <TransportSpecification> transportSpecRepository,
                             IPostTransportRepository postTransportRepository)
 {
     _countryRepository       = countryRepository;
     _localityRepository      = localityRepository;
     _locationRepository      = locationRepository;
     _transportSpecRepository = transportSpecRepository;
     _postTransportRepository = postTransportRepository;
 }
Exemplo n.º 5
0
 public AccountController(
     IEmployeeRepository employeeRepository,
     IIssuingAuthorityRepository issuingAuthorityRepository,
     ILocalityRepository localityRepository,
     IPhoneNumberOperatorRepository phoneNumberOperatorRepository,
     IIssuingAuthorityLocalityRepository issuingAuthorityLocalityRepository,
     IStreetRepository streetRepository)
 {
     this.employeeRepository                 = employeeRepository;
     this.issuingAuthorityRepository         = issuingAuthorityRepository;
     this.localityRepository                 = localityRepository;
     this.phoneNumberOperatorRepository      = phoneNumberOperatorRepository;
     this.issuingAuthorityLocalityRepository = issuingAuthorityLocalityRepository;
     this.streetRepository = streetRepository;
 }
Exemplo n.º 6
0
 public PassportsController(BankDepositsContext context,
                            IEmployeeRepository employeeRepository,
                            IIssuingAuthorityRepository issuingAuthorityRepository,
                            ILocalityRepository localityRepository,
                            IPhoneNumberOperatorRepository phoneNumberOperatorRepository,
                            IIssuingAuthorityLocalityRepository issuingAuthorityLocalityRepository,
                            IStreetRepository streetRepository)
 {
     _context = context;
     this.employeeRepository                 = employeeRepository;
     this.issuingAuthorityRepository         = issuingAuthorityRepository;
     this.localityRepository                 = localityRepository;
     this.phoneNumberOperatorRepository      = phoneNumberOperatorRepository;
     this.issuingAuthorityLocalityRepository = issuingAuthorityLocalityRepository;
     this.streetRepository = streetRepository;
 }
Exemplo n.º 7
0
 public LocalitiesController(ILocalityRepository repository)
 {
     _repository = repository;
 }
 public DataManager(IDistrictRepository districtRepository,
                    ILocalityRepository localityRepository,
                    IStreetRepository streetRepository,
                    IHouseRepository houseRepository,
                    IMunicipalityRepository municipalityRepository,
                    IPersonRepository personRepository,
                    INationalityRepository nationalityRepository,
                    IEducationRepository educationRepository,
                    IOrganizationRepository organizationRepository,
                    IMunicipalityHouseRelationRepository municipalityHouseRelationRepository,
                    IRegistrationRepository registrationRepository,
                    IPartyRepository partyRepository,
                    IPrecinctRepository precinctRepository,
                    IUserRepository userRepository,
                    IWorkerRepository workerRepository,
                    IVoterPartyRelationRepository voterPartyRelationRepository,
                    IVoterRepository voterRepository,
                    IUserLogRepository userLogRepository,
                    IRelationshipRepository relationshipRepository,
                    IPersonRelationRepository personRelationRepository,
                    ICandidateRepository candidateRepository,
                    IAgitatorRepository agitatorRepository,
                    IWorkerHouseRelationRepository workerHouseRelationRepository,
                    IAgitatorHouseRelationRepository agitatorHouseRelationRepository,
                    IAgitatorPrecinctRelationRepository agitatorPrecinctRelationRepository,
                    ICandidatePrecinctRelationRepository candidatePrecinctRelationRepository,
                    ICandidateMunicipalityRelationRepository candidateMunicipalityRelationRepository,
                    ITempPersonRepository tempPersonRepository,
                    IGEORepository geoRepository,
                    IPartyMemberRepository partyMemberRepository,
                    IPartySupporterRepository partySupporterRepository)
 {
     this.districtRepository     = districtRepository;
     this.municipalityRepository = municipalityRepository;
     this.personRepository       = personRepository;
     this.localityRepository     = localityRepository;
     this.nationalityRepository  = nationalityRepository;
     this.streetRepository       = streetRepository;
     this.houseRepository        = houseRepository;
     this.educationRepository    = educationRepository;
     this.organizationRepository = organizationRepository;
     this.municipalityHouseRelationRepository = municipalityHouseRelationRepository;
     this.registrationRepository                  = registrationRepository;
     this.partyRepository                         = partyRepository;
     this.precinctRepository                      = precinctRepository;
     this.userRepository                          = userRepository;
     this.workerRepository                        = workerRepository;
     this.voterPartyRelationRepository            = voterPartyRelationRepository;
     this.voterRepository                         = voterRepository;
     this.userLogRepository                       = userLogRepository;
     this.relationshipRepository                  = relationshipRepository;
     this.personRelationRepository                = personRelationRepository;
     this.candidateRepository                     = candidateRepository;
     this.agitatorRepository                      = agitatorRepository;
     this.workerHouseRelationRepository           = workerHouseRelationRepository;
     this.agitatorHouseRelationRepository         = agitatorHouseRelationRepository;
     this.agitatorPrecinctRelationRepository      = agitatorPrecinctRelationRepository;
     this.candidatePrecinctRelationRepository     = candidatePrecinctRelationRepository;
     this.candidateMunicipalityRelationRepository = candidateMunicipalityRelationRepository;
     this.tempPersonRepository                    = tempPersonRepository;
     this.geoRepository            = geoRepository;
     this.partyMemberRepository    = partyMemberRepository;
     this.partySupporterRepository = partySupporterRepository;
 }
Exemplo n.º 9
0
 public LocalityService(ICountryRepository countryRepository, ILocalityRepository localityRepository)
 {
     _countryRepository  = countryRepository;
     _localityRepository = localityRepository;
 }
Exemplo n.º 10
0
 public LocalityController(IRegionRepository regionRepository, ILocalityRepository localityRepository)
 {
     this.regionRepository   = regionRepository;
     this.localityRepository = localityRepository;
 }
Exemplo n.º 11
0
 public SportClubController(ISportClubRepository sportClubRepository, ILocalityRepository localityRepository)
 {
     this.sportClubRepository = sportClubRepository;
     this.localityRepository  = localityRepository;
 }
Exemplo n.º 12
0
 public DataManager(IDistrictRepository districtRepository,
     ILocalityRepository localityRepository,
     IStreetRepository streetRepository,
     IHouseRepository houseRepository,
     IMunicipalityRepository municipalityRepository,
     IPersonRepository personRepository,
     INationalityRepository nationalityRepository,
     IEducationRepository educationRepository,
     IOrganizationRepository organizationRepository,
     IMunicipalityHouseRelationRepository municipalityHouseRelationRepository,
     IRegistrationRepository registrationRepository,
     IPartyRepository partyRepository,
     IPrecinctRepository precinctRepository,
     IUserRepository userRepository,
     IWorkerRepository workerRepository,
     IVoterPartyRelationRepository voterPartyRelationRepository,
     IVoterRepository voterRepository,
     IUserLogRepository userLogRepository,
     IRelationshipRepository relationshipRepository,
     IPersonRelationRepository personRelationRepository,
     ICandidateRepository candidateRepository,
     IAgitatorRepository agitatorRepository,
     IWorkerHouseRelationRepository workerHouseRelationRepository,
     IAgitatorHouseRelationRepository agitatorHouseRelationRepository,
     IAgitatorPrecinctRelationRepository agitatorPrecinctRelationRepository,
     ICandidatePrecinctRelationRepository candidatePrecinctRelationRepository,
     ICandidateMunicipalityRelationRepository candidateMunicipalityRelationRepository,
     ITempPersonRepository tempPersonRepository,
     IGEORepository geoRepository,
     IPartyMemberRepository partyMemberRepository,
     IPartySupporterRepository partySupporterRepository)
 {
     this.districtRepository = districtRepository;
     this.municipalityRepository = municipalityRepository;
     this.personRepository = personRepository;
     this.localityRepository = localityRepository;
     this.nationalityRepository = nationalityRepository;
     this.streetRepository = streetRepository;
     this.houseRepository = houseRepository;
     this.educationRepository = educationRepository;
     this.organizationRepository = organizationRepository;
     this.municipalityHouseRelationRepository = municipalityHouseRelationRepository;
     this.registrationRepository = registrationRepository;
     this.partyRepository = partyRepository;
     this.precinctRepository = precinctRepository;
     this.userRepository = userRepository;
     this.workerRepository = workerRepository;
     this.voterPartyRelationRepository = voterPartyRelationRepository;
     this.voterRepository = voterRepository;
     this.userLogRepository = userLogRepository;
     this.relationshipRepository = relationshipRepository;
     this.personRelationRepository = personRelationRepository;
     this.candidateRepository = candidateRepository;
     this.agitatorRepository = agitatorRepository;
     this.workerHouseRelationRepository = workerHouseRelationRepository;
     this.agitatorHouseRelationRepository = agitatorHouseRelationRepository;
     this.agitatorPrecinctRelationRepository = agitatorPrecinctRelationRepository;
     this.candidatePrecinctRelationRepository = candidatePrecinctRelationRepository;
     this.candidateMunicipalityRelationRepository = candidateMunicipalityRelationRepository;
     this.tempPersonRepository = tempPersonRepository;
     this.geoRepository = geoRepository;
     this.partyMemberRepository = partyMemberRepository;
     this.partySupporterRepository = partySupporterRepository;
 }
Exemplo n.º 13
0
 static Localities()
 {
     _repository = new Repository();
 }
Exemplo n.º 14
0
 public LocalityService(ILocalityRepository localityRepository)
 {
     _localityRepository = localityRepository;
 }
Exemplo n.º 15
0
 public LocalityService(ILocalityRepository localityRepository, IWelshLocalityRepository welshLocalityRepository)
 {
     this._localityRepository      = localityRepository;
     this._welshLocalityRepository = welshLocalityRepository;
 }
Exemplo n.º 16
0
 public LocalityMasterController(
     ILocalityRepository _localityRepository)
 {
     localityRepository = _localityRepository;
 }