MixERP.Net.Api.HRM.EmployeeQualificationController Class Reference

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

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

Public Member Functions

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

Member Function Documentation

void MixERP.Net.Api.HRM.EmployeeQualificationController.Add ( MixERP.Net.Entities.HRM.EmployeeQualification  employeeQualification)

Adds your instance of EmployeeQualification class.

Parameters
employeeQualificationYour instance of employee qualifications class to add.
void MixERP.Net.Api.HRM.EmployeeQualificationController.AddOrEdit ( [FromBody] Newtonsoft.Json.Linq.JArray  form)

Adds or edits your instance of EmployeeQualification class.

Parameters
employeeQualificationYour instance of employee qualifications class to add or edit.
List<object> MixERP.Net.Api.HRM.EmployeeQualificationController.BulkImport ( [FromBody] dynamic  collection)

Adds or edits multiple instances of EmployeeQualification class.

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

Counts the number of employee qualifications.

Returns
Returns the count of the employee qualifications.
long MixERP.Net.Api.HRM.EmployeeQualificationController.CountFiltered ( string  filterName)

Counts the number of employee qualifications using the supplied filter name.

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

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

Parameters
filtersThe list of filter conditions.
Returns
Returns the count of filtered employee qualifications.
void MixERP.Net.Api.HRM.EmployeeQualificationController.Delete ( long  employeeQualificationId)

Deletes an existing instance of EmployeeQualification class via EmployeeQualificationId.

Parameters
employeeQualificationIdEnter the value for EmployeeQualificationId in order to find and delete the existing record.
void MixERP.Net.Api.HRM.EmployeeQualificationController.Edit ( long  employeeQualificationId,
[FromBody] MixERP.Net.Entities.HRM.EmployeeQualification  employeeQualification 
)

Edits existing record with your instance of EmployeeQualification class.

Parameters
employeeQualificationYour instance of EmployeeQualification class to edit.
employeeQualificationIdEnter the value for EmployeeQualificationId in order to find and edit the existing record.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeQualification> MixERP.Net.Api.HRM.EmployeeQualificationController.Get ( )

Returns collection of employee qualification for export.

Returns
MixERP.Net.Entities.HRM.EmployeeQualification MixERP.Net.Api.HRM.EmployeeQualificationController.Get ( long  employeeQualificationId)

Returns an instance of employee qualification.

Parameters
employeeQualificationIdEnter EmployeeQualificationId to search for.
Returns
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.HRM.EmployeeQualificationController.GetCustomFields ( )

A custom field is a user defined field for employee qualifications.

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

A custom field is a user defined field for employee qualifications.

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

Displayfield is a lightweight key/value collection of employee qualifications.

Returns
Returns an enumerable key/value collection of employee qualifications.
EntityView MixERP.Net.Api.HRM.EmployeeQualificationController.GetEntityView ( )

Creates meta information of "employee qualification" entity.

Returns
Returns the "employee qualification" meta information to perform CRUD operation.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeQualification> MixERP.Net.Api.HRM.EmployeeQualificationController.GetFiltered ( long  pageNumber,
string  filterName 
)

Creates a filtered and paginated collection containing 25 employee qualifications on each page, sorted by the property EmployeeQualificationId.

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

Creates a paginated collection containing 25 employee qualifications on each page, sorted by the property EmployeeQualificationId.

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

Creates a paginated collection containing 25 employee qualifications on each page, sorted by the property EmployeeQualificationId.

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

Creates a filtered and paginated collection containing 25 employee qualifications on each page, sorted by the property EmployeeQualificationId.

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: