Class PriceList
Wraps a price list.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public class PriceList : JTObject
Constructors
PriceList(Int32, String, Nullable<Decimal>, Boolean)
Declaration
public PriceList(int id_, string name_, decimal? defaultTaxPercent_, bool isInactive_)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | id_ | Price list id. |
| System.String | name_ | Price list name. |
| System.Nullable<System.Decimal> | defaultTaxPercent_ | Tax rate to be used for this price list. |
| System.Boolean | isInactive_ | Indicates whether this price list has been marked inactive. |
Properties
DefaultTaxPercent
Tax rate to be used for this price list.
Declaration
public decimal? DefaultTaxPercent { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Decimal> |
IsInactive
Indicates whether this price list has been marked inactive.
Declaration
public bool IsInactive { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
PriceListId
PriceList id.
Declaration
public int PriceListId { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
PriceListName
PriceList name.
Declaration
public string PriceListName { get; }
Property Value
| Type | Description |
|---|---|
| System.String |