//private readonly IEFormCoreService _coreService;

        public InventoryItemTypeService(InventoryPnDbContext dbContext,
                                        IInventoryLocalizationService inventoryLocalizationService,
                                        IUserService userService /*,
                                                                  * IEFormCoreService coreService*/)
        {
            _userService = userService;
            _inventoryLocalizationService = inventoryLocalizationService;
            //_coreService = coreService;
            _dbContext = dbContext;
        }
Exemple #2
0
 public InventoryTagsService(
     IInventoryLocalizationService inventoryLocalizationService,
     ILogger <InventoryTagsService> logger,
     InventoryPnDbContext dbContext,
     IUserService userService)
 {
     _inventoryLocalizationService = inventoryLocalizationService;
     _logger      = logger;
     _dbContext   = dbContext;
     _userService = userService;
 }
Exemple #3
0
 public InventoryItemService(
     InventoryPnDbContext dbContext,
     IInventoryLocalizationService inventoryLocalizationService,
     IUserService userService,
     IEFormCoreService coreService,
     IPluginDbOptions <InventoryBaseSettings> options)
 {
     _userService = userService;
     _inventoryLocalizationService = inventoryLocalizationService;
     _coreService = coreService;
     _dbContext   = dbContext;
     _options     = options;
 }
Exemple #4
0
        //private readonly IBus _bus;


        public InventoryPnSettingsService(ILogger <InventoryPnSettingsService> logger,
                                          IInventoryLocalizationService inventoryLocalizationService,
                                          InventoryPnDbContext dbContext,
                                          IPluginDbOptions <InventoryBaseSettings> options,
                                          IUserService userService,
                                          IEFormCoreService coreService /*,
                                                                         * IRebusService rebusService*/)
        {
            _logger      = logger;
            _dbContext   = dbContext;
            _options     = options;
            _userService = userService;
            _inventoryLocalizationService = inventoryLocalizationService;
            _coreService = coreService;
            //_bus = rebusService.GetBus();
        }