![]() |
Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Kanban Details. More...
Public Member Functions | |
| EntityView | GetEntityView () |
| Creates meta information of "kanban detail" entity. More... | |
| long | Count () |
| Counts the number of kanban details. More... | |
| IEnumerable< MixERP.Net.Entities.Core.KanbanDetail > | Get () |
| Returns collection of kanban detail for export. More... | |
| MixERP.Net.Entities.Core.KanbanDetail | Get (long kanbanDetailId) |
| Returns an instance of kanban detail. More... | |
| IEnumerable< MixERP.Net.Entities.Core.KanbanDetail > | Get ([FromUri] long[] kanbanDetailIds) |
| IEnumerable< MixERP.Net.Entities.Core.KanbanDetail > | GetPagedResult () |
| Creates a paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId. More... | |
| IEnumerable< MixERP.Net.Entities.Core.KanbanDetail > | GetPagedResult (long pageNumber) |
| Creates a paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId. More... | |
| long | CountWhere ([FromBody]dynamic filters) |
| Counts the number of kanban details using the supplied filter(s). More... | |
| IEnumerable< MixERP.Net.Entities.Core.KanbanDetail > | GetWhere (long pageNumber, [FromBody]dynamic filters) |
| Creates a filtered and paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId. More... | |
| long | CountFiltered (string filterName) |
| Counts the number of kanban details using the supplied filter name. More... | |
| IEnumerable< MixERP.Net.Entities.Core.KanbanDetail > | GetFiltered (long pageNumber, string filterName) |
| Creates a filtered and paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId. More... | |
| IEnumerable< DisplayField > | GetDisplayFields () |
| Displayfield is a lightweight key/value collection of kanban details. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields () |
| A custom field is a user defined field for kanban details. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields (string resourceId) |
| A custom field is a user defined field for kanban details. More... | |
| void | AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form) |
| Adds or edits your instance of KanbanDetail class. More... | |
| void | Add (MixERP.Net.Entities.Core.KanbanDetail kanbanDetail) |
| Adds your instance of KanbanDetail class. More... | |
| void | Edit (long kanbanDetailId, [FromBody] MixERP.Net.Entities.Core.KanbanDetail kanbanDetail) |
| Edits existing record with your instance of KanbanDetail class. More... | |
| List< object > | BulkImport ([FromBody]dynamic collection) |
| Adds or edits multiple instances of KanbanDetail class. More... | |
| void | Delete (long kanbanDetailId) |
| Deletes an existing instance of KanbanDetail class via KanbanDetailId. More... | |
| IEnumerable< MixERP.Net.Entities.Core.KanbanDetail > | Get ([FromUri] long[] kanbanIds, [FromUri] object[] resourceIds) |
Properties | |
| long | LoginId [get] |
| int | UserId [get] |
| int | OfficeId [get] |
| string | Catalog [get] |
Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Kanban Details.
| void MixERP.Net.Api.Core.KanbanDetailController.Add | ( | MixERP.Net.Entities.Core.KanbanDetail | kanbanDetail | ) |
Adds your instance of KanbanDetail class.
| kanbanDetail | Your instance of kanban details class to add. |
| void MixERP.Net.Api.Core.KanbanDetailController.AddOrEdit | ( | [FromBody] Newtonsoft.Json.Linq.JArray | form | ) |
Adds or edits your instance of KanbanDetail class.
| kanbanDetail | Your instance of kanban details class to add or edit. |
| List<object> MixERP.Net.Api.Core.KanbanDetailController.BulkImport | ( | [FromBody] dynamic | collection | ) |
Adds or edits multiple instances of KanbanDetail class.
| collection | Your collection of KanbanDetail class to bulk import. |
| MixERPException | Thrown when your any KanbanDetail class in the collection is invalid or malformed. |
| long MixERP.Net.Api.Core.KanbanDetailController.Count | ( | ) |
Counts the number of kanban details.
| long MixERP.Net.Api.Core.KanbanDetailController.CountFiltered | ( | string | filterName | ) |
Counts the number of kanban details using the supplied filter name.
| filterName | The named filter. |
| long MixERP.Net.Api.Core.KanbanDetailController.CountWhere | ( | [FromBody] dynamic | filters | ) |
Counts the number of kanban details using the supplied filter(s).
| filters | The list of filter conditions. |
| void MixERP.Net.Api.Core.KanbanDetailController.Delete | ( | long | kanbanDetailId | ) |
Deletes an existing instance of KanbanDetail class via KanbanDetailId.
| kanbanDetailId | Enter the value for KanbanDetailId in order to find and delete the existing record. |
| void MixERP.Net.Api.Core.KanbanDetailController.Edit | ( | long | kanbanDetailId, |
| [FromBody] MixERP.Net.Entities.Core.KanbanDetail | kanbanDetail | ||
| ) |
Edits existing record with your instance of KanbanDetail class.
| kanbanDetail | Your instance of KanbanDetail class to edit. |
| kanbanDetailId | Enter the value for KanbanDetailId in order to find and edit the existing record. |
| IEnumerable<MixERP.Net.Entities.Core.KanbanDetail> MixERP.Net.Api.Core.KanbanDetailController.Get | ( | ) |
Returns collection of kanban detail for export.
| MixERP.Net.Entities.Core.KanbanDetail MixERP.Net.Api.Core.KanbanDetailController.Get | ( | long | kanbanDetailId | ) |
Returns an instance of kanban detail.
| kanbanDetailId | Enter KanbanDetailId to search for. |
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.KanbanDetailController.GetCustomFields | ( | ) |
A custom field is a user defined field for kanban details.
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.KanbanDetailController.GetCustomFields | ( | string | resourceId | ) |
A custom field is a user defined field for kanban details.
| IEnumerable<DisplayField> MixERP.Net.Api.Core.KanbanDetailController.GetDisplayFields | ( | ) |
Displayfield is a lightweight key/value collection of kanban details.
| EntityView MixERP.Net.Api.Core.KanbanDetailController.GetEntityView | ( | ) |
Creates meta information of "kanban detail" entity.
| IEnumerable<MixERP.Net.Entities.Core.KanbanDetail> MixERP.Net.Api.Core.KanbanDetailController.GetFiltered | ( | long | pageNumber, |
| string | filterName | ||
| ) |
Creates a filtered and paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId.
| pageNumber | Enter the page number to produce the resultset. |
| filterName | The named filter. |
| IEnumerable<MixERP.Net.Entities.Core.KanbanDetail> MixERP.Net.Api.Core.KanbanDetailController.GetPagedResult | ( | ) |
Creates a paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId.
| IEnumerable<MixERP.Net.Entities.Core.KanbanDetail> MixERP.Net.Api.Core.KanbanDetailController.GetPagedResult | ( | long | pageNumber | ) |
Creates a paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId.
| pageNumber | Enter the page number to produce the resultset. |
| IEnumerable<MixERP.Net.Entities.Core.KanbanDetail> MixERP.Net.Api.Core.KanbanDetailController.GetWhere | ( | long | pageNumber, |
| [FromBody] dynamic | filters | ||
| ) |
Creates a filtered and paginated collection containing 25 kanban details on each page, sorted by the property KanbanDetailId.
| pageNumber | Enter the page number to produce the resultset. |
| filters | The list of filter conditions. |