Esempio n. 1
0
 public RegionController(IRegionRepository regionRepository, IPopupService popupService, IHospitalService hospitalService,
                         ICountryPresidentService countryPresidentService, IHospitalRepository hospitalRepository) : base(popupService)
 {
     this.regionRepository        = regionRepository;
     this.hospitalService         = hospitalService;
     this.countryPresidentService = countryPresidentService;
     this.hospitalRepository      = hospitalRepository;
 }
Esempio n. 2
0
 public CountryService(ICountryRepository countriesRepository, IEntityRepository entititesRepository, IEntityService entityService,
                       IPresidentVotingRepository presidentVotingRepository, ICongressCandidateVotingRepository congressCandidateVotingRepository,
                       ICitizenRepository citizenRepository, ICitizenService citizenService, ICountryPresidentService countryPresidentService,
                       ICongressVotingService congressVotingService, IWalletService walletService, IWarningService warningService)
 {
     this.countryRepository                 = countriesRepository;
     this.entityRepository                  = entititesRepository;
     this.entityService                     = entityService;
     this.presidentVotingRepository         = presidentVotingRepository;
     this.congressCandidateVotingRepository = congressCandidateVotingRepository;
     this.citizenRepository                 = citizenRepository;
     this.citizenService                    = citizenService;
     this.countryPresidentService           = countryPresidentService;
     this.congressVotingService             = congressVotingService;
     this.walletService                     = walletService;
     this.warningService                    = warningService;
 }