MixERP.Net.Api.Transactions.LateFeeController Class Reference

Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Late Fees. More...

Inheritance diagram for MixERP.Net.Api.Transactions.LateFeeController:

Public Member Functions

EntityView GetEntityView ()
 Creates meta information of "late fee" entity. More...
 
long Count ()
 Counts the number of late fees. More...
 
IEnumerable< MixERP.Net.Entities.Transactions.LateFeeGet ()
 Returns collection of late fee for export. More...
 
MixERP.Net.Entities.Transactions.LateFee Get (long transactionMasterId)
 Returns an instance of late fee. More...
 
IEnumerable< MixERP.Net.Entities.Transactions.LateFeeGet ([FromUri] long[] transactionMasterIds)
 
IEnumerable< MixERP.Net.Entities.Transactions.LateFeeGetPagedResult ()
 Creates a paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId. More...
 
IEnumerable< MixERP.Net.Entities.Transactions.LateFeeGetPagedResult (long pageNumber)
 Creates a paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId. More...
 
long CountWhere ([FromBody]dynamic filters)
 Counts the number of late fees using the supplied filter(s). More...
 
IEnumerable< MixERP.Net.Entities.Transactions.LateFeeGetWhere (long pageNumber, [FromBody]dynamic filters)
 Creates a filtered and paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId. More...
 
long CountFiltered (string filterName)
 Counts the number of late fees using the supplied filter name. More...
 
IEnumerable< MixERP.Net.Entities.Transactions.LateFeeGetFiltered (long pageNumber, string filterName)
 Creates a filtered and paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId. More...
 
IEnumerable< DisplayFieldGetDisplayFields ()
 Displayfield is a lightweight key/value collection of late fees. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields ()
 A custom field is a user defined field for late fees. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields (string resourceId)
 A custom field is a user defined field for late fees. More...
 
void AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form)
 Adds or edits your instance of LateFee class. More...
 
void Add (MixERP.Net.Entities.Transactions.LateFee lateFee)
 Adds your instance of LateFee class. More...
 
void Edit (long transactionMasterId, [FromBody] MixERP.Net.Entities.Transactions.LateFee lateFee)
 Edits existing record with your instance of LateFee class. More...
 
List< object > BulkImport ([FromBody]dynamic collection)
 Adds or edits multiple instances of LateFee class. More...
 
void Delete (long transactionMasterId)
 Deletes an existing instance of LateFee class via TransactionMasterId. 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 Late Fees.

Member Function Documentation

void MixERP.Net.Api.Transactions.LateFeeController.Add ( MixERP.Net.Entities.Transactions.LateFee  lateFee)

Adds your instance of LateFee class.

Parameters
lateFeeYour instance of late fees class to add.
void MixERP.Net.Api.Transactions.LateFeeController.AddOrEdit ( [FromBody] Newtonsoft.Json.Linq.JArray  form)

Adds or edits your instance of LateFee class.

Parameters
lateFeeYour instance of late fees class to add or edit.
List<object> MixERP.Net.Api.Transactions.LateFeeController.BulkImport ( [FromBody] dynamic  collection)

Adds or edits multiple instances of LateFee class.

Parameters
collectionYour collection of LateFee class to bulk import.
Returns
Returns list of imported transactionMasterIds.
Exceptions
MixERPExceptionThrown when your any LateFee class in the collection is invalid or malformed.
long MixERP.Net.Api.Transactions.LateFeeController.Count ( )

Counts the number of late fees.

Returns
Returns the count of the late fees.
long MixERP.Net.Api.Transactions.LateFeeController.CountFiltered ( string  filterName)

Counts the number of late fees using the supplied filter name.

Parameters
filterNameThe named filter.
Returns
Returns the count of filtered late fees.
long MixERP.Net.Api.Transactions.LateFeeController.CountWhere ( [FromBody] dynamic  filters)

Counts the number of late fees using the supplied filter(s).

Parameters
filtersThe list of filter conditions.
Returns
Returns the count of filtered late fees.
void MixERP.Net.Api.Transactions.LateFeeController.Delete ( long  transactionMasterId)

Deletes an existing instance of LateFee class via TransactionMasterId.

Parameters
transactionMasterIdEnter the value for TransactionMasterId in order to find and delete the existing record.
void MixERP.Net.Api.Transactions.LateFeeController.Edit ( long  transactionMasterId,
[FromBody] MixERP.Net.Entities.Transactions.LateFee  lateFee 
)

Edits existing record with your instance of LateFee class.

Parameters
lateFeeYour instance of LateFee class to edit.
transactionMasterIdEnter the value for TransactionMasterId in order to find and edit the existing record.
IEnumerable<MixERP.Net.Entities.Transactions.LateFee> MixERP.Net.Api.Transactions.LateFeeController.Get ( )

Returns collection of late fee for export.

Returns
MixERP.Net.Entities.Transactions.LateFee MixERP.Net.Api.Transactions.LateFeeController.Get ( long  transactionMasterId)

Returns an instance of late fee.

Parameters
transactionMasterIdEnter TransactionMasterId to search for.
Returns
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Transactions.LateFeeController.GetCustomFields ( )

A custom field is a user defined field for late fees.

Returns
Returns an enumerable custom field collection of late fees.
IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Transactions.LateFeeController.GetCustomFields ( string  resourceId)

A custom field is a user defined field for late fees.

Returns
Returns an enumerable custom field collection of late fees.
IEnumerable<DisplayField> MixERP.Net.Api.Transactions.LateFeeController.GetDisplayFields ( )

Displayfield is a lightweight key/value collection of late fees.

Returns
Returns an enumerable key/value collection of late fees.
EntityView MixERP.Net.Api.Transactions.LateFeeController.GetEntityView ( )

Creates meta information of "late fee" entity.

Returns
Returns the "late fee" meta information to perform CRUD operation.
IEnumerable<MixERP.Net.Entities.Transactions.LateFee> MixERP.Net.Api.Transactions.LateFeeController.GetFiltered ( long  pageNumber,
string  filterName 
)

Creates a filtered and paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId.

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.Transactions.LateFee> MixERP.Net.Api.Transactions.LateFeeController.GetPagedResult ( )

Creates a paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId.

Returns
Returns the first page from the collection.
IEnumerable<MixERP.Net.Entities.Transactions.LateFee> MixERP.Net.Api.Transactions.LateFeeController.GetPagedResult ( long  pageNumber)

Creates a paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId.

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

Creates a filtered and paginated collection containing 25 late fees on each page, sorted by the property TransactionMasterId.

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: