Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 3
0
 public Producer(IEventHubProducer producer, ConsumeContext consumeContext)
 {
     _producer       = producer;
     _consumeContext = consumeContext;
 }