MixERP.Net.Api.HRM.EmployeeIdentificationDetailController Class Reference

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

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

Public Member Functions

EntityView GetEntityView ()
 Creates meta information of "employee identification detail" entity. More...
 
long Count ()
 Counts the number of employee identification details. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeIdentificationDetailGet ()
 Returns collection of employee identification detail for export. More...
 
MixERP.Net.Entities.HRM.EmployeeIdentificationDetail Get (long employeeIdentificationDetailId)
 Returns an instance of employee identification detail. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeIdentificationDetailGet ([FromUri] long[] employeeIdentificationDetailIds)
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeIdentificationDetailGetPagedResult ()
 Creates a paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeIdentificationDetailGetPagedResult (long pageNumber)
 Creates a paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId. More...
 
long CountWhere ([FromBody]dynamic filters)
 Counts the number of employee identification details using the supplied filter(s). More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeIdentificationDetailGetWhere (long pageNumber, [FromBody]dynamic filters)
 Creates a filtered and paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId. More...
 
long CountFiltered (string filterName)
 Counts the number of employee identification details using the supplied filter name. More...
 
IEnumerable< MixERP.Net.Entities.HRM.EmployeeIdentificationDetailGetFiltered (long pageNumber, string filterName)
 Creates a filtered and paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId. More...
 
IEnumerable< DisplayFieldGetDisplayFields ()
 Displayfield is a lightweight key/value collection of employee identification details. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields ()
 A custom field is a user defined field for employee identification details. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields (string resourceId)
 A custom field is a user defined field for employee identification details. More...
 
void AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form)
 Adds or edits your instance of EmployeeIdentificationDetail class. More...
 
void Add (MixERP.Net.Entities.HRM.EmployeeIdentificationDetail employeeIdentificationDetail)
 Adds your instance of EmployeeIdentificationDetail class. More...
 
void Edit (long employeeIdentificationDetailId, [FromBody] MixERP.Net.Entities.HRM.EmployeeIdentificationDetail employeeIdentificationDetail)
 Edits existing record with your instance of EmployeeIdentificationDetail class. More...
 
List< object > BulkImport ([FromBody]dynamic collection)
 Adds or edits multiple instances of EmployeeIdentificationDetail class. More...
 
void Delete (long employeeIdentificationDetailId)
 Deletes an existing instance of EmployeeIdentificationDetail class via EmployeeIdentificationDetailId. 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 Identification Details.

Member Function Documentation

void MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.Add ( MixERP.Net.Entities.HRM.EmployeeIdentificationDetail  employeeIdentificationDetail)

Adds your instance of EmployeeIdentificationDetail class.

Parameters
employeeIdentificationDetailYour instance of employee identification details class to add.
void MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.AddOrEdit ( [FromBody] Newtonsoft.Json.Linq.JArray  form)

Adds or edits your instance of EmployeeIdentificationDetail class.

Parameters
employeeIdentificationDetailYour instance of employee identification details class to add or edit.
List<object> MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.BulkImport ( [FromBody] dynamic  collection)

Adds or edits multiple instances of EmployeeIdentificationDetail class.

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

Counts the number of employee identification details.

Returns
Returns the count of the employee identification details.
long MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.CountFiltered ( string  filterName)

Counts the number of employee identification details using the supplied filter name.

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

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

Parameters
filtersThe list of filter conditions.
Returns
Returns the count of filtered employee identification details.
void MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.Delete ( long  employeeIdentificationDetailId)

Deletes an existing instance of EmployeeIdentificationDetail class via EmployeeIdentificationDetailId.

Parameters
employeeIdentificationDetailIdEnter the value for EmployeeIdentificationDetailId in order to find and delete the existing record.
void MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.Edit ( long  employeeIdentificationDetailId,
[FromBody] MixERP.Net.Entities.HRM.EmployeeIdentificationDetail  employeeIdentificationDetail 
)

Edits existing record with your instance of EmployeeIdentificationDetail class.

Parameters
employeeIdentificationDetailYour instance of EmployeeIdentificationDetail class to edit.
employeeIdentificationDetailIdEnter the value for EmployeeIdentificationDetailId in order to find and edit the existing record.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeIdentificationDetail> MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.Get ( )

Returns collection of employee identification detail for export.

Returns
MixERP.Net.Entities.HRM.EmployeeIdentificationDetail MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.Get ( long  employeeIdentificationDetailId)

Returns an instance of employee identification detail.

Parameters
employeeIdentificationDetailIdEnter EmployeeIdentificationDetailId to search for.
Returns
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.GetCustomFields ( )

A custom field is a user defined field for employee identification details.

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

A custom field is a user defined field for employee identification details.

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

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

Returns
Returns an enumerable key/value collection of employee identification details.
EntityView MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.GetEntityView ( )

Creates meta information of "employee identification detail" entity.

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

Creates a filtered and paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId.

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.EmployeeIdentificationDetail> MixERP.Net.Api.HRM.EmployeeIdentificationDetailController.GetPagedResult ( )

Creates a paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId.

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

Creates a paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId.

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

Creates a filtered and paginated collection containing 25 employee identification details on each page, sorted by the property EmployeeIdentificationDetailId.

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: