Class ProductFeatureService

Class ProductFeatureService#

Inheritance Relationships#

Base Type#

Class Documentation#

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

Public Functions

ProductFeatureService ()#
Task<List<ProductFeature>> FindAll (Dictionary<string, string> query = null)#

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

Task<ProductFeature> Create (ProductFeature obj)#

Create a new feature.

Task<ProductFeature> FindById (string id)#

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

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

Updates a single feature.

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

Retrieves the Entities Count based on the given criteria.

Return:

Entity Count

Task Delete (string id)#

Deletes an instance of T with the specified unique identifier.

Return:

Task

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

Deletes all Entities from the service.

Return:

Task