Class ContactService#

Inheritance Relationships#

Base Type#

Class Documentation#

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

Public Functions

ContactService ()#
Task<List<Contact>> FindAll (Dictionary<string, string> query = null)#

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

Task<Contact> Create (Contact obj)#

Create a new contact.

Task<Contact> FindById (string id)#

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

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

Updates a single contact.

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