public HelixEventService(DbContext context, IHelixEventDbService helixEventDbService, IProductDbService productDbService, IHelixEventProductDbService eventProductDbService) { _dbContext = context; _helixEventDbService = helixEventDbService; _productDbService = productDbService; _eventProductDbService = eventProductDbService; }
public ProductHub( IProductPublishService productPublishService, IProductDbService dbService, IMapper mapper ) : base(dbService, mapper) { var test = productPublishService; }