Class OAuthClientService

Class OAuthClientService#

Inheritance Relationships#

Base Type#

Class Documentation#

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

Public Functions

OAuthClientService ()#
Task<List<OAuthClient>> FindAll (Dictionary<string, string> query = null)#

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

Task<OAuthClient> FindById (string id)#

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

Task<OAuthClient> Create (OAuthClient obj)#

Create a new client.

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

Returns the the count of clients.

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

Updates a single client.

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

Deletes all Entities from the service.

Task Delete (string id)#

Deletes The Client.