public IActionResult SubscribeToDevice([FromRoute] int userId, int deviceId)
 {
     return(Ok(_deviceLogic.SubscribeToDevice(userId, deviceId)));
 }