Class PersonaStatDefinitionService

Class PersonaStatDefinitionService#

Inheritance Relationships#

Base Type#

Class Documentation#

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

Public Functions

PersonaStatDefinitionService ()#
Task<List<PersonaStatDefinition>> FindAll (Dictionary<string, string> query = null)#

Returns all persona stat definitions from the system that the user has access to.

Task<PersonaStatDefinition> Create (PersonaStatDefinition obj)#

Create a persona stat definitions.

Task<PersonaStatDefinition> FindById (string id)#

Returns a single persona stat definition from the system that the user has access to.

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

Updates a single persona stat definition.

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