Class OrderServiceFacade
Facade of the OrderService (see http://webservices.fleetboard.com/services2/orderservice)
Inheritance
System.Object
OrderServiceFacade
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: Simplic.Telematic.FleetBoard
Assembly: Simplic.Telematic.FleetBoard.dll
Syntax
public class OrderServiceFacade
Constructors
| Improve this Doc View SourceOrderServiceFacade(String)
Declaration
public OrderServiceFacade(string webserviceUrl)
Parameters
Type | Name | Description |
---|---|---|
System.String | webserviceUrl |
Methods
| Improve this Doc View SourceGetFormDef(Int64)
Gets a single FormDef document as specified by the given inoid.
Declaration
public FormDef GetFormDef(long inoid)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | inoid | The inoid of the FormDef to get |
Returns
Type | Description |
---|---|
FormDef | The FormDef document |
GetFormDefs(Nullable<Int64>, Nullable<Int64>)
Gets FormDef documents for the given inoid or tmConfigId.
Declaration
public IEnumerable<FormDef> GetFormDefs(long? inoid = null, long? tmConfigId = null)
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<System.Int64> | inoid | The inoid which the FormDefs must refer to |
System.Nullable<System.Int64> | tmConfigId | The TmConfigId which the FormDefs must refer to |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<FormDef> | The FormDef documents. |