Exemple #1
0
 private void CheckVatByVies(string countryCode, string VATCode)
 {
     try
     {
         var result = ServicesMethods.CheckVat(countryCode, VATCode);
         MessageProvider.MessageFromServer(result.IsValid, result.Name, result.Address);
     }
     catch (Exception exceptionMessage)
     {
         MessageProvider.Exceptions(exceptionMessage.Message);
     }
 }