static bool CheckIfNumber(string cardID)
{
  return cardID.All(c => Char.IsNumber(c));
}