Exemplo n.º 1
0
 public SupplyChainController(IBuildingUpgradeHandler buldingUpgradeHandler, ICityStorageCalculator cityStorageCalculator, IGameSimContext dbContext, IBuildingUiInfoUpdater buildingUiInfoUpdater)
 {
     _buldingUpgradeHandler = buldingUpgradeHandler;
     _cityStorageCalculator = cityStorageCalculator;
     _dbContext = dbContext;
     _buildingUiInfoUpdater = buildingUiInfoUpdater;
 }
Exemplo n.º 2
0
 public ProductTypeController(IGameSimContext db)
 {
     _db = db;
 }
 public ManufacturerTypeRepository(IGameSimContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public PropertyUpgradeUoW(IProductTypeRepository productTypeRepository, IGameSimContext context)
 {
     productTypeRepository.Context = context;
     ProductTypeRepository = productTypeRepository;
 }