MixERP.Net.Api.Core.IncomeTaxSetupController Class Reference

Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Income Tax Setups. More...

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

Public Member Functions

EntityView GetEntityView ()
 Creates meta information of "income tax setup" entity. More...
 
long Count ()
 Counts the number of income tax setups. More...
 
IEnumerable< MixERP.Net.Entities.Core.IncomeTaxSetupGet ()
 Returns collection of income tax setup for export. More...
 
MixERP.Net.Entities.Core.IncomeTaxSetup Get (int incomeTaxSetupId)
 Returns an instance of income tax setup. More...
 
IEnumerable< MixERP.Net.Entities.Core.IncomeTaxSetupGet ([FromUri] int[] incomeTaxSetupIds)
 
IEnumerable< MixERP.Net.Entities.Core.IncomeTaxSetupGetPagedResult ()
 Creates a paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId. More...
 
IEnumerable< MixERP.Net.Entities.Core.IncomeTaxSetupGetPagedResult (long pageNumber)
 Creates a paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId. More...
 
long CountWhere ([FromBody]dynamic filters)
 Counts the number of income tax setups using the supplied filter(s). More...
 
IEnumerable< MixERP.Net.Entities.Core.IncomeTaxSetupGetWhere (long pageNumber, [FromBody]dynamic filters)
 Creates a filtered and paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId. More...
 
long CountFiltered (string filterName)
 Counts the number of income tax setups using the supplied filter name. More...
 
IEnumerable< MixERP.Net.Entities.Core.IncomeTaxSetupGetFiltered (long pageNumber, string filterName)
 Creates a filtered and paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId. More...
 
IEnumerable< DisplayFieldGetDisplayFields ()
 Displayfield is a lightweight key/value collection of income tax setups. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields ()
 A custom field is a user defined field for income tax setups. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields (string resourceId)
 A custom field is a user defined field for income tax setups. More...
 
void AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form)
 Adds or edits your instance of IncomeTaxSetup class. More...
 
void Add (MixERP.Net.Entities.Core.IncomeTaxSetup incomeTaxSetup)
 Adds your instance of IncomeTaxSetup class. More...
 
void Edit (int incomeTaxSetupId, [FromBody] MixERP.Net.Entities.Core.IncomeTaxSetup incomeTaxSetup)
 Edits existing record with your instance of IncomeTaxSetup class. More...
 
List< object > BulkImport ([FromBody]dynamic collection)
 Adds or edits multiple instances of IncomeTaxSetup class. More...
 
void Delete (int incomeTaxSetupId)
 Deletes an existing instance of IncomeTaxSetup class via IncomeTaxSetupId. 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 Income Tax Setups.

Member Function Documentation

void MixERP.Net.Api.Core.IncomeTaxSetupController.Add ( MixERP.Net.Entities.Core.IncomeTaxSetup  incomeTaxSetup)

Adds your instance of IncomeTaxSetup class.

Parameters
incomeTaxSetupYour instance of income tax setups class to add.
void MixERP.Net.Api.Core.IncomeTaxSetupController.AddOrEdit ( [FromBody] Newtonsoft.Json.Linq.JArray  form)

Adds or edits your instance of IncomeTaxSetup class.

Parameters
incomeTaxSetupYour instance of income tax setups class to add or edit.
List<object> MixERP.Net.Api.Core.IncomeTaxSetupController.BulkImport ( [FromBody] dynamic  collection)

Adds or edits multiple instances of IncomeTaxSetup class.

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

Counts the number of income tax setups.

Returns
Returns the count of the income tax setups.
long MixERP.Net.Api.Core.IncomeTaxSetupController.CountFiltered ( string  filterName)

Counts the number of income tax setups using the supplied filter name.

Parameters
filterNameThe named filter.
Returns
Returns the count of filtered income tax setups.
long MixERP.Net.Api.Core.IncomeTaxSetupController.CountWhere ( [FromBody] dynamic  filters)

Counts the number of income tax setups using the supplied filter(s).

Parameters
filtersThe list of filter conditions.
Returns
Returns the count of filtered income tax setups.
void MixERP.Net.Api.Core.IncomeTaxSetupController.Delete ( int  incomeTaxSetupId)

Deletes an existing instance of IncomeTaxSetup class via IncomeTaxSetupId.

Parameters
incomeTaxSetupIdEnter the value for IncomeTaxSetupId in order to find and delete the existing record.
void MixERP.Net.Api.Core.IncomeTaxSetupController.Edit ( int  incomeTaxSetupId,
[FromBody] MixERP.Net.Entities.Core.IncomeTaxSetup  incomeTaxSetup 
)

Edits existing record with your instance of IncomeTaxSetup class.

Parameters
incomeTaxSetupYour instance of IncomeTaxSetup class to edit.
incomeTaxSetupIdEnter the value for IncomeTaxSetupId in order to find and edit the existing record.
IEnumerable<MixERP.Net.Entities.Core.IncomeTaxSetup> MixERP.Net.Api.Core.IncomeTaxSetupController.Get ( )

Returns collection of income tax setup for export.

Returns
MixERP.Net.Entities.Core.IncomeTaxSetup MixERP.Net.Api.Core.IncomeTaxSetupController.Get ( int  incomeTaxSetupId)

Returns an instance of income tax setup.

Parameters
incomeTaxSetupIdEnter IncomeTaxSetupId to search for.
Returns
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.IncomeTaxSetupController.GetCustomFields ( )

A custom field is a user defined field for income tax setups.

Returns
Returns an enumerable custom field collection of income tax setups.
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.IncomeTaxSetupController.GetCustomFields ( string  resourceId)

A custom field is a user defined field for income tax setups.

Returns
Returns an enumerable custom field collection of income tax setups.
IEnumerable<DisplayField> MixERP.Net.Api.Core.IncomeTaxSetupController.GetDisplayFields ( )

Displayfield is a lightweight key/value collection of income tax setups.

Returns
Returns an enumerable key/value collection of income tax setups.
EntityView MixERP.Net.Api.Core.IncomeTaxSetupController.GetEntityView ( )

Creates meta information of "income tax setup" entity.

Returns
Returns the "income tax setup" meta information to perform CRUD operation.
IEnumerable<MixERP.Net.Entities.Core.IncomeTaxSetup> MixERP.Net.Api.Core.IncomeTaxSetupController.GetFiltered ( long  pageNumber,
string  filterName 
)

Creates a filtered and paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId.

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.IncomeTaxSetup> MixERP.Net.Api.Core.IncomeTaxSetupController.GetPagedResult ( )

Creates a paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId.

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

Creates a paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId.

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

Creates a filtered and paginated collection containing 25 income tax setups on each page, sorted by the property IncomeTaxSetupId.

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: