public AboutViewModel(INavigationService navigationService, IEventHubProducer client, ILocationService locationService) : base(navigationService) { _client = client; _locationService = locationService; Title = "About"; StartUpdatesCommand = new DelegateCommand(StartUpdates); }
public CachedEventHubProducer(TKey key, IEventHubProducer producer) { Key = key; _producer = producer; }
public Producer(IEventHubProducer producer, ConsumeContext consumeContext) { _producer = producer; _consumeContext = consumeContext; }