Exemplo n.º 1
0
 public TabiConfiguration(LayeredConfiguration layeredConfiguration) : base(layeredConfiguration)
 {
     App                = new AppConfiguration(this);
     MobileCenter       = new MobileCenterConfiguration(this);
     Notifications      = new NotificationsConfiguration(this);
     Support            = new SupportConfiguration(this);
     SensorMeasurements = new SensorMeasurementsConfiguration(this);
     StopResolver       = new StopResolverConfiguration(this);
     UserInterface      = new UserInterfaceConfiguration(this);
     Logging            = new LoggingConfiguration(this);
     Api                = new ApiConfiguration(this);
     Motive             = new MotiveConfiguration(this);
     TransportMode      = new TransportationModeConfiguration(this);
 }
Exemplo n.º 2
0
 public AppCenterSupport(MobileCenterConfiguration mobileCenterConfiguration)
 {
     _configuration = mobileCenterConfiguration ?? throw new ArgumentNullException(nameof(mobileCenterConfiguration));
 }