Class OrderService#

Inheritance Relationships#

Base Type#

Class Documentation#

class xbe.sdk.Services.OrderService : xbe.sdk.ServiceBase#

Public Functions

OrderService ()#
Task<List<Order>> FindAll (Dictionary<string, string> query = null)#

Returns all orders from the system that the user has access to.

Task<Order> Create (Order obj)#

Create a new order.

Task<Order> FindById (string id)#

Returns a single order from the system that the user has access to.

Task<Order> Update (string id, Order obj)#

Updates a single order.

Task Delete (string id)#

Deletes an instance of T with the specified unique identifier.

Return:

Task

Task<long?> Count (Dictionary<string, string> query = null)#

Retrieves the Entities Count based on the given criteria.

Return:

Entity Count

Task Truncate (Dictionary<string, string> query = null)#

Deletes all Entities from the service.

Return:

Task