Ejemplo n.º 1
0
 public UpdateService(IApiService apiService, IToDoListRepository todoRepository, IStaticDataService staticService, IIndustryJobUpdateService indyService, IAssetUpdateService assetUpdate, IInventionService inventionService, IManufacturingService manufacturingService, IMarketOrderUpdateService marketService, ITransactionService transactionService)
 {
     _apiService = apiService;
     _todoRepository = todoRepository;
     _staticService = staticService;
     _indyService = indyService;
     _assetUpdate = assetUpdate;
     _inventionService = inventionService;
     _manufacturingService = manufacturingService;
     _marketService = marketService;
     _transactionService = transactionService;
 }
Ejemplo n.º 2
0
 public ManufacturingController(IManufacturingService manufacturingService)
 {
     _manufacturingService = manufacturingService;
 }
Ejemplo n.º 3
0
 public InventionService(IApiService apiService, IManufacturingService manufacturingService, IStaticDataService staticService)
 {
     _apiService = apiService;
     _manufacturingService = manufacturingService;
     _staticService = staticService;
 }