public ProductController(ITransactionProvider transactionProvider, IMapper mapper, IProductService service, IProductInfoService productInfoService) { this._transactionProvider = transactionProvider; this._mapper = mapper; this._service = service; this._productInfoService = productInfoService; }
public SystemInfoDetailsService(IRegistryService registryService, IProductInfoService productInfoService, IHardwareInfoService hardwareInfoService, INetworkInfoService networkInfoService, IDiskInfoService diskInfoService, ILogger <SystemInfoDetailsService> logger) { _registryService = registryService; _productInfoService = productInfoService; _hardwareInfoService = hardwareInfoService; _networkInfoService = networkInfoService; _diskInfoService = diskInfoService; _logger = logger; }
public HomeController(IProductInfoService productInfoService) { _productInfoService = productInfoService; }
public ProductInfoController(IOrchardServices services, IProductInfoService productInfoService) { _services = services; _productInfoService = productInfoService; }
public ProductInfoController(IProductInfoService productinfoService, IMapper mapper) { _productinfoService = productinfoService; _mapper = mapper; }
public ProductsController(IProductInfoService productInfoService, IProductInfoHistoryService productInfoHistoryService) { _productInfoService = productInfoService; _productInfoHistoryService = productInfoHistoryService; }
public ProductInfoController(ProductContext context, IProductInfoService service) { _context = context; _service = service; }