public string GetEnderecoByCep(string param)
 {
     try
     {
         return(_common.GetAddressByZipCode(param));
     }
     catch (Exception ex)
     {
         throw SaveLog(ex);
     }
 }