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