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;
        }
Exemplo n.º 2
0
 public HospitalService(IHospitalRepository hospitalRepository, IWalletService walletService, IEquipmentService equipmentService,
                        IReservedEntityNameRepository reservedEntityNameRepository, IRegionRepository regionRepository, ICompanyService companyService,
                        ITransactionsService transactionsService, IConstructionRepository constructionRepository)
 {
     this.hospitalRepository           = hospitalRepository;
     this.walletService                = Attach(walletService);
     this.equipmentService             = Attach(equipmentService);
     this.reservedEntityNameRepository = reservedEntityNameRepository;
     this.regionRepository             = regionRepository;
     this.companyService               = Attach(companyService);
     this.transactionsService          = Attach(transactionsService);
     this.constructionRepository       = constructionRepository;
 }
Exemplo n.º 3
0
 public ConstructionService(IDefenseSystemService defenseSystemService, IConstructionRepository constructionRepository, ICompanyService companyService,
                            IHospitalService hospitalService, IReservedEntityNameRepository reservedEntityNameRepository, IRemovalService removalService, IWalletService walletService, IWarningService warningService,
                            IWalletRepository walletRepository)
 {
     this.defenseSystemService         = defenseSystemService;
     this.constructionRepository       = constructionRepository;
     this.companyService               = companyService;
     this.hospitalService              = hospitalService;
     this.reservedEntityNameRepository = reservedEntityNameRepository;
     this.removalService               = removalService;
     this.walletService    = walletService;
     this.warningService   = warningService;
     this.walletRepository = walletRepository;
 }
Exemplo n.º 4
0
 public EntityService(IEntityRepository entitiesRepository, IReservedEntityNameRepository reservedEntityNameRepository)
 {
     this.entityRepository             = entitiesRepository;
     this.reservedEntityNameRepository = reservedEntityNameRepository;
 }