public List <BluetoothEntity> GetListOfPairedDevices()
        {
            List <BluetoothEntity> result = new List <BluetoothEntity>();

            if (_bluetoothService.CheckBluetooth())
            {
                List <BluetoothContract> bluetoothDevices = _bluetoothService.QueryDevices();

                result = _mapperService.Map <List <BluetoothEntity> >(bluetoothDevices);
            }

            return(result);
        }