Beispiel #1
0
 public AndroidClient(INetworkClient networkClient,
                      IConnectedClientInfoUpdaterService connectedClientInfoUpdaterService,
                      ILogger <AndroidClient> logger)
     : base(networkClient, connectedClientInfoUpdaterService)
 {
     this.networkClient = networkClient;
     this.connectedClientInfoUpdaterService = connectedClientInfoUpdaterService;
     this.logger = logger;
 }
Beispiel #2
0
 public ButterflyMobileClient(INetworkClient networkClient,
                              IConnectedClientInfoUpdaterService connectedClientInfoUpdaterService)
 {
     this.networkClient = networkClient;
     this.connectedClientInfoUpdaterService = connectedClientInfoUpdaterService;
     this.ClientViewModel = new ConnectedClientViewModel()
     {
         IsAdmin = false,
         Machine = CrossDeviceInfo.Current.Model,
         Name    = ".. android"
     };
 }