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