Exemplo n.º 1
0
 public CountryController(ICountryRepository countryRepository, ICountryService countryService, IPresidentVotingRepository presidentVotingRepository, IWarService warService,
                          ITransactionsService transactionService, IWarRepository warRepository, IRegionService regionService, IRegionRepository regionRepository, IEmbargoService embargoService,
                          IEmbargoRepository embargoRepository, IWalletRepository walletRepository, IPopupService popupService, ICountryTreasureService countryTreasureService,
                          IWalletService walletService, ICompanyService companyService, IMPPService mppService, IMilitaryProtectionPactRepository mppRepository,
                          IMilitaryProtectionPactOfferRepository mppOfferRepository, ITransactionScopeProvider transactionScopeProvider, IConstructionRepository constructionRepository,
                          IConstructionService constructionService) : base(popupService)
 {
     this.countryRepository         = countryRepository;
     this.countryService            = countryService;
     this.presidentVotingRepository = presidentVotingRepository;
     this.warService               = warService;
     this.transactionService       = transactionService;
     this.warRepository            = warRepository;
     this.regionService            = regionService;
     this.regionRepository         = regionRepository;
     this.embargoService           = embargoService;
     this.embargoRepository        = embargoRepository;
     this.walletRepository         = walletRepository;
     this.countryTreasureService   = countryTreasureService;
     this.walletService            = walletService;
     this.companyService           = companyService;
     this.mppService               = mppService;
     this.mppRepository            = mppRepository;
     this.mppOfferRepository       = mppOfferRepository;
     this.transactionScopeProvider = transactionScopeProvider;
     this.constructionRepository   = constructionRepository;
     this.constructionService      = constructionService;
 }
Exemplo 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;
 }
Exemplo n.º 3
0
 public CountryPresidentService(ICountryRepository countryRepository, IPresidentVotingRepository presidentVotingRepository, IRegionRepository regionRepository)
 {
     this.countryRepository         = countryRepository;
     this.presidentVotingRepository = presidentVotingRepository;
     this.regionRepository          = regionRepository;
 }