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