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