Exemple #1
0
 static void TestCreateTax(Client client)
 {
     Tax tax = new Tax();
     tax.Name = "Test Tax from API";
     tax.Rate = 0.77;
     var createResult = client.CreateTax(tax);
     Console.WriteLine("Created a tax with id: {0}", createResult.Id);
 }