Пример #1
0
 public CompanyService(ICitizenService citizenService, IConfigurationRepository configurationRepository,
                       IEquipmentRepository equipmentRepository, IProductService productService, IProductRepository productRepository,
                       ICitizenRepository citizenRepository, ITransactionsService transactionService,
                       IJobOfferService jobOfferService, ICompanyEmployeeRepository companyEmployeeRepository,
                       ICompanyRepository companyRepository, IEntityService entityService, ICompanyManagerRepository companyManagerRepository,
                       IRegionRepository regionRepository, IWarningService warningService, IJobOfferRepository jobOfferRepository,
                       IEquipmentService equipmentService, IContractService contractService, IWalletService walletService, IPopupService popupService,
                       IRegionService regionService, ICompanyFinanceSummaryService companyFinanceSummaryService)
 {
     this.companyRepository         = companyRepository;
     this.entityService             = entityService;
     this.companyManagerRepository  = companyManagerRepository;
     this.jobOfferService           = jobOfferService;
     this.companyEmployeeRepository = companyEmployeeRepository;
     this.citizenRepository         = citizenRepository;
     this.transactionService        = transactionService;
     this.equipmentRepository       = equipmentRepository;
     this.productService            = productService;
     this.productRepository         = productRepository;
     this.citizenService            = Attach(citizenService);
     this.configurationRepository   = configurationRepository;
     this.regionRepository          = regionRepository;
     this.warningService            = Attach(warningService);
     this.jobOfferRepository        = jobOfferRepository;
     this.equipmentService          = Attach(equipmentService);
     this.contractService           = Attach(contractService);
     this.walletService             = Attach(walletService);
     this.popupService  = Attach(popupService);
     this.regionService = Attach(regionService);
     this.companyFinanceSummaryService = Attach(companyFinanceSummaryService);
 }
Пример #2
0
 public JobOfferService(IJobOfferRepository jobOfferRepository, ITransactionsService transactionService, ICountryRepository countryRepository,
                        ICompanyRepository companyRepository, ICompanyFinanceSummaryService companyFinanceSummaryService)
 {
     this.jobOfferRepository           = jobOfferRepository;
     this.transactionService           = transactionService;
     this.countryRepository            = countryRepository;
     this.companyRepository            = companyRepository;
     this.companyFinanceSummaryService = companyFinanceSummaryService;
 }
Пример #3
0
 public GiftService(IWalletService walletService, IEquipmentService equipmentService, IProductService productService, IRegionService regionService,
                    IEmbargoRepository embargoRepository, ITransactionsService transactionsService, IGiftTransactionRepository giftTransactionRepository,
                    IWarningService warningService, ICompanyFinanceSummaryService companyFinanceSummaryService)
 {
     this.walletService                = walletService;
     this.equipmentService             = equipmentService;
     this.productService               = productService;
     this.regionService                = regionService;
     this.embargoRepository            = embargoRepository;
     this.giftTransactionRepository    = giftTransactionRepository;
     this.transactionsService          = transactionsService;
     this.warningService               = warningService;
     this.companyFinanceSummaryService = companyFinanceSummaryService;
 }
Пример #4
0
 public TradeService(IEquipmentRepository equipmentRepository, ITransactionsService transactionsService, IEquipmentService equipmentService, IWalletService walletService,
                     ITradeRepository tradeRepository, IProductService productService, IRegionService regionService, IEmbargoRepository embargoRepository, IWarningService warningService,
                     IWalletRepository walletRepository, ICompanyFinanceSummaryService companyFinanceSummaryService)
 {
     this.equipmentRepository          = Attach(equipmentRepository);
     this.transactionsService          = Attach(transactionsService);
     this.equipmentService             = Attach(equipmentService);
     this.walletService                = Attach(walletService);
     this.tradeRepository              = Attach(tradeRepository);
     this.productService               = Attach(productService);
     this.regionService                = Attach(regionService);
     this.embargoRepository            = Attach(embargoRepository);
     this.warningService               = Attach(warningService);
     this.walletRepository             = walletRepository;
     this.companyFinanceSummaryService = Attach(companyFinanceSummaryService);
 }
Пример #5
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;
 }