MixERP.Net.Api.Core.TaxBaseAmountTypeController Class Reference

Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Tax Base Amount Types. More...

Inheritance diagram for MixERP.Net.Api.Core.TaxBaseAmountTypeController:

Public Member Functions

EntityView GetEntityView ()
 Creates meta information of "tax base amount type" entity. More...
 
long Count ()
 Counts the number of tax base amount types. More...
 
IEnumerable< MixERP.Net.Entities.Core.TaxBaseAmountTypeGet ()
 Returns collection of tax base amount type for export. More...
 
MixERP.Net.Entities.Core.TaxBaseAmountType Get (string taxBaseAmountTypeCode)
 Returns an instance of tax base amount type. More...
 
IEnumerable< MixERP.Net.Entities.Core.TaxBaseAmountTypeGet ([FromUri] string[] taxBaseAmountTypeCodes)
 
IEnumerable< MixERP.Net.Entities.Core.TaxBaseAmountTypeGetPagedResult ()
 Creates a paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode. More...
 
IEnumerable< MixERP.Net.Entities.Core.TaxBaseAmountTypeGetPagedResult (long pageNumber)
 Creates a paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode. More...
 
long CountWhere ([FromBody]dynamic filters)
 Counts the number of tax base amount types using the supplied filter(s). More...
 
IEnumerable< MixERP.Net.Entities.Core.TaxBaseAmountTypeGetWhere (long pageNumber, [FromBody]dynamic filters)
 Creates a filtered and paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode. More...
 
long CountFiltered (string filterName)
 Counts the number of tax base amount types using the supplied filter name. More...
 
IEnumerable< MixERP.Net.Entities.Core.TaxBaseAmountTypeGetFiltered (long pageNumber, string filterName)
 Creates a filtered and paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode. More...
 
IEnumerable< DisplayFieldGetDisplayFields ()
 Displayfield is a lightweight key/value collection of tax base amount types. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields ()
 A custom field is a user defined field for tax base amount types. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields (string resourceId)
 A custom field is a user defined field for tax base amount types. More...
 
void AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form)
 Adds or edits your instance of TaxBaseAmountType class. More...
 
void Add (MixERP.Net.Entities.Core.TaxBaseAmountType taxBaseAmountType)
 Adds your instance of TaxBaseAmountType class. More...
 
void Edit (string taxBaseAmountTypeCode, [FromBody] MixERP.Net.Entities.Core.TaxBaseAmountType taxBaseAmountType)
 Edits existing record with your instance of TaxBaseAmountType class. More...
 
List< object > BulkImport ([FromBody]dynamic collection)
 Adds or edits multiple instances of TaxBaseAmountType class. More...
 
void Delete (string taxBaseAmountTypeCode)
 Deletes an existing instance of TaxBaseAmountType class via TaxBaseAmountTypeCode. More...
 

Properties

long LoginId [get]
 
int UserId [get]
 
int OfficeId [get]
 
string Catalog [get]
 

Detailed Description

Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Tax Base Amount Types.

Member Function Documentation

void MixERP.Net.Api.Core.TaxBaseAmountTypeController.Add ( MixERP.Net.Entities.Core.TaxBaseAmountType  taxBaseAmountType)

Adds your instance of TaxBaseAmountType class.

Parameters
taxBaseAmountTypeYour instance of tax base amount types class to add.
void MixERP.Net.Api.Core.TaxBaseAmountTypeController.AddOrEdit ( [FromBody] Newtonsoft.Json.Linq.JArray  form)

Adds or edits your instance of TaxBaseAmountType class.

Parameters
taxBaseAmountTypeYour instance of tax base amount types class to add or edit.
List<object> MixERP.Net.Api.Core.TaxBaseAmountTypeController.BulkImport ( [FromBody] dynamic  collection)

Adds or edits multiple instances of TaxBaseAmountType class.

Parameters
collectionYour collection of TaxBaseAmountType class to bulk import.
Returns
Returns list of imported taxBaseAmountTypeCodes.
Exceptions
MixERPExceptionThrown when your any TaxBaseAmountType class in the collection is invalid or malformed.
long MixERP.Net.Api.Core.TaxBaseAmountTypeController.Count ( )

Counts the number of tax base amount types.

Returns
Returns the count of the tax base amount types.
long MixERP.Net.Api.Core.TaxBaseAmountTypeController.CountFiltered ( string  filterName)

Counts the number of tax base amount types using the supplied filter name.

Parameters
filterNameThe named filter.
Returns
Returns the count of filtered tax base amount types.
long MixERP.Net.Api.Core.TaxBaseAmountTypeController.CountWhere ( [FromBody] dynamic  filters)

Counts the number of tax base amount types using the supplied filter(s).

Parameters
filtersThe list of filter conditions.
Returns
Returns the count of filtered tax base amount types.
void MixERP.Net.Api.Core.TaxBaseAmountTypeController.Delete ( string  taxBaseAmountTypeCode)

Deletes an existing instance of TaxBaseAmountType class via TaxBaseAmountTypeCode.

Parameters
taxBaseAmountTypeCodeEnter the value for TaxBaseAmountTypeCode in order to find and delete the existing record.
void MixERP.Net.Api.Core.TaxBaseAmountTypeController.Edit ( string  taxBaseAmountTypeCode,
[FromBody] MixERP.Net.Entities.Core.TaxBaseAmountType  taxBaseAmountType 
)

Edits existing record with your instance of TaxBaseAmountType class.

Parameters
taxBaseAmountTypeYour instance of TaxBaseAmountType class to edit.
taxBaseAmountTypeCodeEnter the value for TaxBaseAmountTypeCode in order to find and edit the existing record.
IEnumerable<MixERP.Net.Entities.Core.TaxBaseAmountType> MixERP.Net.Api.Core.TaxBaseAmountTypeController.Get ( )

Returns collection of tax base amount type for export.

Returns
MixERP.Net.Entities.Core.TaxBaseAmountType MixERP.Net.Api.Core.TaxBaseAmountTypeController.Get ( string  taxBaseAmountTypeCode)

Returns an instance of tax base amount type.

Parameters
taxBaseAmountTypeCodeEnter TaxBaseAmountTypeCode to search for.
Returns
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetCustomFields ( )

A custom field is a user defined field for tax base amount types.

Returns
Returns an enumerable custom field collection of tax base amount types.
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetCustomFields ( string  resourceId)

A custom field is a user defined field for tax base amount types.

Returns
Returns an enumerable custom field collection of tax base amount types.
IEnumerable<DisplayField> MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetDisplayFields ( )

Displayfield is a lightweight key/value collection of tax base amount types.

Returns
Returns an enumerable key/value collection of tax base amount types.
EntityView MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetEntityView ( )

Creates meta information of "tax base amount type" entity.

Returns
Returns the "tax base amount type" meta information to perform CRUD operation.
IEnumerable<MixERP.Net.Entities.Core.TaxBaseAmountType> MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetFiltered ( long  pageNumber,
string  filterName 
)

Creates a filtered and paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode.

Parameters
pageNumberEnter the page number to produce the resultset.
filterNameThe named filter.
Returns
Returns the requested page from the collection using the supplied filters.
IEnumerable<MixERP.Net.Entities.Core.TaxBaseAmountType> MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetPagedResult ( )

Creates a paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode.

Returns
Returns the first page from the collection.
IEnumerable<MixERP.Net.Entities.Core.TaxBaseAmountType> MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetPagedResult ( long  pageNumber)

Creates a paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode.

Parameters
pageNumberEnter the page number to produce the resultset.
Returns
Returns the requested page from the collection.
IEnumerable<MixERP.Net.Entities.Core.TaxBaseAmountType> MixERP.Net.Api.Core.TaxBaseAmountTypeController.GetWhere ( long  pageNumber,
[FromBody] dynamic  filters 
)

Creates a filtered and paginated collection containing 25 tax base amount types on each page, sorted by the property TaxBaseAmountTypeCode.

Parameters
pageNumberEnter the page number to produce the resultset.
filtersThe list of filter conditions.
Returns
Returns the requested page from the collection using the supplied filters.

The documentation for this class was generated from the following file: