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