public ActionResult EditBluetoothPost(UserBluetoothEditModel userBluetoothModel)
        {
            JsonResult json = new JsonResult();

            json.Data = UserBluetoothEditModel.UserBluetoothEditPost(userBluetoothModel).UserId;
            return(json);
        }
 public ActionResult EditBluetooth(string userId, string bluetoothId)
 {
     return(View(UserBluetoothEditModel.UserBluetoothEdit(userId, bluetoothId)));
 }