Exemple #1
0
 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;
 }
Exemple #3
0
 public HomeController(IProductInfoService productInfoService)
 {
     _productInfoService = productInfoService;
 }
Exemple #4
0
 public ProductInfoController(IOrchardServices services, IProductInfoService productInfoService)
 {
     _services           = services;
     _productInfoService = productInfoService;
 }
Exemple #5
0
 public ProductInfoController(IProductInfoService productinfoService, IMapper mapper)
 {
     _productinfoService = productinfoService;
     _mapper             = mapper;
 }
Exemple #6
0
 public ProductsController(IProductInfoService productInfoService, IProductInfoHistoryService productInfoHistoryService)
 {
     _productInfoService        = productInfoService;
     _productInfoHistoryService = productInfoHistoryService;
 }
Exemple #7
0
 public ProductInfoController(ProductContext context, IProductInfoService service)
 {
     _context = context;
     _service = service;
 }