Example #1
0
 public SubscriptionService(ISubscriptionBackgroundService subscriptionBackgroundService)
 {
     _subscriptionBackgroundService = subscriptionBackgroundService;
 }
 public SubscriptionService(ISubscriptionBackgroundService backgroundService) => _backgroundService = backgroundService;
Example #3
0
 public QueryService(IEpcisQuery[] queries, IUnitOfWork unitOfWork, ISubscriptionBackgroundService backgroundService)
 {
     _queries           = queries;
     _unitOfWork        = unitOfWork;
     _backgroundService = backgroundService;
 }