Ejemplo n.º 1
0
        public CongressVotingService(ICongressVotingRepository congressVotingRepository, IPartyMemberRepository partyMemberRepository, ICongressmenRepository congressmenRepository,
                                     IProductTaxRepository productTaxRepository, IWarningService warningService, ICompanyService companyService, IWalletService walletService, IRegionRepository regionRepository,
                                     IReservedEntityNameRepository reservedEntityNameRepository, ICongressVotingReservedMoneyRepository congressVotingReservedMoneyRepository, ITransactionsService transactionsService,
                                     ICompanyRepository companyRepository, ICitizenRepository citizenRepository, IVotingGreetingMessageRepository votingGreetingMessageRepository,
                                     IHospitalService hospitalService, ICountryRepository countryRepository, IRemovalService removalService,
                                     IDefenseSystemService defenseSystemService, IConstructionService constructionService, ICountryEventService countryEventService)

        {
            this.congressVotingRepository              = congressVotingRepository;
            this.partyMemberRepository                 = partyMemberRepository;
            this.congressmenRepository                 = congressmenRepository;
            this.productTaxRepository                  = productTaxRepository;
            this.warningService                        = warningService;
            this.companyService                        = companyService;
            this.walletService                         = walletService;
            this.regionRepository                      = regionRepository;
            this.reservedEntityNameRepository          = reservedEntityNameRepository;
            this.congressVotingReservedMoneyRepository = congressVotingReservedMoneyRepository;
            this.transactionsService                   = transactionsService;
            this.companyRepository                     = companyRepository;
            this.citizenRepository                     = citizenRepository;
            this.votingGreetingMessageRepository       = votingGreetingMessageRepository;
            this.hospitalService                       = hospitalService;
            this.countryRepository                     = countryRepository;
            this.removalService                        = removalService;
            this.constructionService                   = constructionService;
            this.defenseSystemService                  = defenseSystemService;
            this.countryEventService                   = countryEventService;
        }
Ejemplo n.º 2
0
 public MarketService(IEquipmentRepository equipmentRepository, IMarketOfferRepository marketOfferRepository, ICompanyRepository companyRepository,
                      IRegionService regionService, IEntityRepository entityRepository, ITransactionsService transactionService, IWalletService walletService,
                      IProductTaxRepository productTaxRepository, IProductService productService, IEmbargoRepository embargoRepository, ICountryRepository countryRepository,
                      IEquipmentService equipmentService, ICompanyFinanceSummaryService companyFinanceSummaryService)
 {
     this.equipmentRepository          = equipmentRepository;
     this.marketOfferRepository        = marketOfferRepository;
     this.companyRepository            = companyRepository;
     this.regionService                = regionService;
     this.entityRepository             = entityRepository;
     this.transactionService           = transactionService;
     this.walletService                = walletService;
     this.productTaxRepository         = productTaxRepository;
     this.productService               = productService;
     this.embargoRepository            = embargoRepository;
     this.countryRepository            = countryRepository;
     this.equipmentService             = equipmentService;
     this.companyFinanceSummaryService = companyFinanceSummaryService;
 }
Ejemplo n.º 3
0
 public ProductService(IProductTaxRepository productTaxRepository, ICountryRepository countryRepository)
 {
     this.productTaxRepository = productTaxRepository;
     this.countryRepository    = countryRepository;
 }