MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController Class Reference

Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Employee Social Network Details. More...

Inheritance diagram for MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController:

Public Member Functions

EntityView GetEntityView ()
 Creates meta information of "employee social network detail" entity. More...
 
long Count ()
 Counts the number of employee social network details. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetailGet ()
 Returns collection of employee social network detail for export. More...
 
MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail Get (long employeeSocialNetworkDetailId)
 Returns an instance of employee social network detail. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetailGet ([FromUri] long[] employeeSocialNetworkDetailIds)
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetailGetPagedResult ()
 Creates a paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetailGetPagedResult (long pageNumber)
 Creates a paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId. More...
 
long CountWhere ([FromBody]dynamic filters)
 Counts the number of employee social network details using the supplied filter(s). More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetailGetWhere (long pageNumber, [FromBody]dynamic filters)
 Creates a filtered and paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId. More...
 
long CountFiltered (string filterName)
 Counts the number of employee social network details using the supplied filter name. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetailGetFiltered (long pageNumber, string filterName)
 Creates a filtered and paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId. More...
 
IEnumerable< DisplayFieldGetDisplayFields ()
 Displayfield is a lightweight key/value collection of employee social network details. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields ()
 A custom field is a user defined field for employee social network details. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields (string resourceId)
 A custom field is a user defined field for employee social network details. More...
 
void AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form)
 Adds or edits your instance of EmployeeSocialNetworkDetail class. More...
 
void Add (MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail employeeSocialNetworkDetail)
 Adds your instance of EmployeeSocialNetworkDetail class. More...
 
void Edit (long employeeSocialNetworkDetailId, [FromBody] MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail employeeSocialNetworkDetail)
 Edits existing record with your instance of EmployeeSocialNetworkDetail class. More...
 
List< object > BulkImport ([FromBody]dynamic collection)
 Adds or edits multiple instances of EmployeeSocialNetworkDetail class. More...
 
void Delete (long employeeSocialNetworkDetailId)
 Deletes an existing instance of EmployeeSocialNetworkDetail class via EmployeeSocialNetworkDetailId. More...
 

Properties

long LoginId [get]
 
int UserId [get]
 
int OfficeId [get]
 
string Catalog [get]
 

Detailed Description

Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Employee Social Network Details.

Member Function Documentation

void MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.Add ( MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail  employeeSocialNetworkDetail)

Adds your instance of EmployeeSocialNetworkDetail class.

Parameters
employeeSocialNetworkDetailYour instance of employee social network details class to add.
void MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.AddOrEdit ( [FromBody] Newtonsoft.Json.Linq.JArray  form)

Adds or edits your instance of EmployeeSocialNetworkDetail class.

Parameters
employeeSocialNetworkDetailYour instance of employee social network details class to add or edit.
List<object> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.BulkImport ( [FromBody] dynamic  collection)

Adds or edits multiple instances of EmployeeSocialNetworkDetail class.

Parameters
collectionYour collection of EmployeeSocialNetworkDetail class to bulk import.
Returns
Returns list of imported employeeSocialNetworkDetailIds.
Exceptions
MixERPExceptionThrown when your any EmployeeSocialNetworkDetail class in the collection is invalid or malformed.
long MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.Count ( )

Counts the number of employee social network details.

Returns
Returns the count of the employee social network details.
long MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.CountFiltered ( string  filterName)

Counts the number of employee social network details using the supplied filter name.

Parameters
filterNameThe named filter.
Returns
Returns the count of filtered employee social network details.
long MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.CountWhere ( [FromBody] dynamic  filters)

Counts the number of employee social network details using the supplied filter(s).

Parameters
filtersThe list of filter conditions.
Returns
Returns the count of filtered employee social network details.
void MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.Delete ( long  employeeSocialNetworkDetailId)

Deletes an existing instance of EmployeeSocialNetworkDetail class via EmployeeSocialNetworkDetailId.

Parameters
employeeSocialNetworkDetailIdEnter the value for EmployeeSocialNetworkDetailId in order to find and delete the existing record.
void MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.Edit ( long  employeeSocialNetworkDetailId,
[FromBody] MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail  employeeSocialNetworkDetail 
)

Edits existing record with your instance of EmployeeSocialNetworkDetail class.

Parameters
employeeSocialNetworkDetailYour instance of EmployeeSocialNetworkDetail class to edit.
employeeSocialNetworkDetailIdEnter the value for EmployeeSocialNetworkDetailId in order to find and edit the existing record.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.Get ( )

Returns collection of employee social network detail for export.

Returns
MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.Get ( long  employeeSocialNetworkDetailId)

Returns an instance of employee social network detail.

Parameters
employeeSocialNetworkDetailIdEnter EmployeeSocialNetworkDetailId to search for.
Returns
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetCustomFields ( )

A custom field is a user defined field for employee social network details.

Returns
Returns an enumerable custom field collection of employee social network details.
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetCustomFields ( string  resourceId)

A custom field is a user defined field for employee social network details.

Returns
Returns an enumerable custom field collection of employee social network details.
IEnumerable<DisplayField> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetDisplayFields ( )

Displayfield is a lightweight key/value collection of employee social network details.

Returns
Returns an enumerable key/value collection of employee social network details.
EntityView MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetEntityView ( )

Creates meta information of "employee social network detail" entity.

Returns
Returns the "employee social network detail" meta information to perform CRUD operation.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetFiltered ( long  pageNumber,
string  filterName 
)

Creates a filtered and paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId.

Parameters
pageNumberEnter the page number to produce the resultset.
filterNameThe named filter.
Returns
Returns the requested page from the collection using the supplied filters.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetPagedResult ( )

Creates a paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId.

Returns
Returns the first page from the collection.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetPagedResult ( long  pageNumber)

Creates a paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId.

Parameters
pageNumberEnter the page number to produce the resultset.
Returns
Returns the requested page from the collection.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeSocialNetworkDetail> MixERP.Net.Api.HRM.EmployeeSocialNetworkDetailController.GetWhere ( long  pageNumber,
[FromBody] dynamic  filters 
)

Creates a filtered and paginated collection containing 25 employee social network details on each page, sorted by the property EmployeeSocialNetworkDetailId.

Parameters
pageNumberEnter the page number to produce the resultset.
filtersThe list of filter conditions.
Returns
Returns the requested page from the collection using the supplied filters.

The documentation for this class was generated from the following file: