public ReplayQueuedEventsServiceTests() { _dataStore = A.Fake <IDataStore>(); _sendToEndpointService = A.Fake <ISendToEndpointService>(); _queueEventService = A.Fake <IQueueEventService>(); _sut = new ReplayQueuedEventsService(_dataStore, _sendToEndpointService, _queueEventService); }
public GetServiceSubscriptionsForEventPolicy( ICompassEnvironment compassEnvironment, IQueueEventService queueEventService ) { _compassEnvironment = compassEnvironment; _queueEventService = queueEventService; }
public ReplayQueuedEventsService( IDataStore dataStore, ISendToEndpointService sendToEndpointService, IQueueEventService queueEventService ) { _dataStore = dataStore; _sendToEndpointService = sendToEndpointService; _queueEventService = queueEventService; }
public QueueEventServiceTests() { _dataStore = A.Fake <IDataStore>(); _sut = new QueueEventService(_dataStore); }