Exemple #1
0
 public ProfileController(
     IProfileManagementService profileManagementService,
     ITableEditorService tableEditorService)
 {
     _profileManagementService = profileManagementService;
     _tableEditorService       = tableEditorService;
 }
 public ResourceController(
     IResourceManagementService resourceManagementService,
     ITableEditorService tableEditorService)
 {
     _resourceManagementService = resourceManagementService;
     _tableEditorService        = tableEditorService;
 }
 public StockController(
     IStockManagementService stockManagementService,
     ITableEditorService tableEditorService)
 {
     _stockManagementService = stockManagementService;
     _tableEditorService     = tableEditorService;
 }
 public CurrencyController(
     ICurrencyManagementService currencyManagementService,
     IStockManagementService stockManagementService,
     ITableEditorService tableEditorService)
 {
     _currencyManagementService = currencyManagementService;
     _stockManagementService    = stockManagementService;
     _tableEditorService        = tableEditorService;
 }