public Motorista Obter(int motoristaId) { return(_motoristaRepository.GetQuery() .Where(x => x.MotoristaId == motoristaId) .Where(x => x.Ativo) .FirstOrDefault()); }