public IActionResult DeleteDevice([FromRoute] int deviceId)
 {
     return(Ok(_deviceLogic.RemoveDevice(deviceId)));
 }