private void SaveMatchLevel3(MatchedName match)
 {
     // Don't save if the values are the same
     if (match.Level3NotSame())
     {
         matchProvider.SaveMatchLevel3(
             match.InputLocation.Name3,
             match.GazetteerLocation.Name1,
             match.GazetteerLocation.Name2,
             match.GazetteerLocation.Name3);
     }
 }