Creating tax classes
To create a department, you must perform the following:
- Get the orders manager.
Get an instance of the OrdersManager object.
- Create a new tax class.
To create a new tax class, call the CreateTaxclass method of the manager.
- Set the properties of the TaxClass object.
In this example the following properties are set:
- Title
Gets or sets the display name of the department.
- IsActive
Indicates whether the tax class is active.
- Save the changes.
To save the changes, call the SaveChanges method of the manager.
Here is an example:
public static void CreateTaxClass(string title)
{
OrdersManager ordersManager = OrdersManager.GetManager();
TaxClass taxClass = ordersManager.CreateTaxClass();
taxClass.Title = title;
taxClass.IsActive = true;
ordersManager.SaveChanges();
}