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