Class PersonaService#

Inheritance Relationships#

Base Type#

Class Documentation#

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

Public Functions

PersonaService ()#
Task<List<Persona>> FindAll (Dictionary<string, string> query = null)#

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

Task<Persona> Create (Persona obj)#

Create a new persona.

Task<Persona> FindById (string id)#

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

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

Updates a single persona.

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