public ConstructionController(IConstructionRepository constructionRepository, IPopupService popupService, IConstructionService constructionService,
                               ICountryRepository countryRepository, IMarketOfferRepository marketOfferRepository, IMarketService marketService) : base(popupService)
 {
     this.constructionRepository = constructionRepository;
     this.constructionService    = constructionService;
     this.countryRepository      = countryRepository;
     this.marketOfferRepository  = marketOfferRepository;
     this.marketService          = marketService;
 }
Ejemplo n.º 2
0
 public MarketOfferController(IMarketOfferRepository marketOfferRepository, IMarketService marketService, IWalletService walletService,
                              IEquipmentRepository equipmentRepository, ICountryRepository countryRepository, ICompanyService companyService
                              , IPopupService popupService, IEquipmentService equipmentService, IEntityRepository entityRepository) : base(popupService)
 {
     this.marketOfferRepository = marketOfferRepository;
     this.marketService         = marketService;
     this.walletService         = walletService;
     this.equipmentRepository   = equipmentRepository;
     this.countryRepository     = countryRepository;
     this.companyService        = companyService;
     this.equipmentService      = equipmentService;
     this.entityRepository      = entityRepository;
 }
Ejemplo n.º 3
0
 public HotelController(IPopupService popupService, IHotelRepository hotelRepository, IHotelService hotelService,
                        IHotelRoomRepository hotelRoomRepository, ITransactionScopeProvider transactionScopeProvider,
                        IWalletRepository walletRepository, IMarketOfferRepository marketOfferRepository, ICitizenRepository citizenRepository,
                        IHotelManagerRepository hotelManagerRepository) : base(popupService)
 {
     this.hotelRepository          = hotelRepository;
     this.hotelService             = hotelService;
     this.hotelRoomRepository      = hotelRoomRepository;
     this.transactionScopeProvider = transactionScopeProvider;
     this.walletRepository         = walletRepository;
     this.marketOfferRepository    = marketOfferRepository;
     this.citizenRepository        = citizenRepository;
     this.hotelManagerRepository   = hotelManagerRepository;
 }
Ejemplo n.º 4
0
 public HouseController(IPopupService popupService, IHouseRepository houseRepository,
                        IHouseService houseService, IEquipmentRepository equipmentRepository, IHouseFurnitureRepository houseFurnitureRepository,
                        IHouseChestService houseChestService, IHouseChestItemRepository houseChestItemRepository, IEquipmentItemRepository equipmentItemRepository,
                        IMarketOfferRepository marketOfferRepository, IMarketService marketService, ISellHouseService sellHouseService) : base(popupService)
 {
     this.houseRepository          = houseRepository;
     this.houseService             = houseService;
     this.equipmentRepository      = equipmentRepository;
     this.houseFurnitureRepository = houseFurnitureRepository;
     this.houseChestService        = houseChestService;
     this.houseChestItemRepository = houseChestItemRepository;
     this.equipmentItemRepository  = equipmentItemRepository;
     this.marketOfferRepository    = marketOfferRepository;
     this.marketService            = marketService;
     this.sellHouseService         = sellHouseService;
 }
Ejemplo n.º 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;
 }