MixERP.Net.Api.HRM.EmployeeExperienceController Class Reference

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

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

Public Member Functions

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

Member Function Documentation

void MixERP.Net.Api.HRM.EmployeeExperienceController.Add ( MixERP.Net.Entities.HRM.EmployeeExperience  employeeExperience)

Adds your instance of EmployeeExperience class.

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

Adds or edits your instance of EmployeeExperience class.

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

Adds or edits multiple instances of EmployeeExperience class.

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

Counts the number of employee experiences.

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

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

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

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

Parameters
filtersThe list of filter conditions.
Returns
Returns the count of filtered employee experiences.
void MixERP.Net.Api.HRM.EmployeeExperienceController.Delete ( long  employeeExperienceId)

Deletes an existing instance of EmployeeExperience class via EmployeeExperienceId.

Parameters
employeeExperienceIdEnter the value for EmployeeExperienceId in order to find and delete the existing record.
void MixERP.Net.Api.HRM.EmployeeExperienceController.Edit ( long  employeeExperienceId,
[FromBody] MixERP.Net.Entities.HRM.EmployeeExperience  employeeExperience 
)

Edits existing record with your instance of EmployeeExperience class.

Parameters
employeeExperienceYour instance of EmployeeExperience class to edit.
employeeExperienceIdEnter the value for EmployeeExperienceId in order to find and edit the existing record.
IEnumerable<MixERP.Net.Entities.HRM.EmployeeExperience> MixERP.Net.Api.HRM.EmployeeExperienceController.Get ( )

Returns collection of employee experience for export.

Returns
MixERP.Net.Entities.HRM.EmployeeExperience MixERP.Net.Api.HRM.EmployeeExperienceController.Get ( long  employeeExperienceId)

Returns an instance of employee experience.

Parameters
employeeExperienceIdEnter EmployeeExperienceId to search for.
Returns
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.HRM.EmployeeExperienceController.GetCustomFields ( )

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

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

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

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

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

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

Creates meta information of "employee experience" entity.

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

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

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

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

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

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

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

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

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: