public async Task <IActionResult> GetMotoristaSemCargaDestinoOrigem() { try { var motoristas = await motoristaRepository.GetMotoristaSemCargaDestinoOrigem(); if (motoristas == null) { return(NotFound()); } return(Ok(motoristas)); } catch (Exception) { return(BadRequest()); } }