GET api/TillMenu/PriceListDump/{PageSize}/{PageRequired}

Iterates all the Price Lists in the database. Used mainly for exporting all information to till for offline use.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
PageSize

integer

Required

PageRequired

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EskimoClassLibraries.clsTillMenuPriceList
NameDescriptionTypeAdditional information
ID

integer

None.

Code

string

Required

Description

string

None.

PercentageDiscount

decimal number

None.

PriceListMaster

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Code": "sample string 2",
    "Description": "sample string 3",
    "PercentageDiscount": 1.0,
    "PriceListMaster": 1
  },
  {
    "ID": 1,
    "Code": "sample string 2",
    "Description": "sample string 3",
    "PercentageDiscount": 1.0,
    "PriceListMaster": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfclsTillMenuPriceList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries">
  <clsTillMenuPriceList>
    <Code>sample string 2</Code>
    <Description>sample string 3</Description>
    <ID>1</ID>
    <PercentageDiscount>1</PercentageDiscount>
    <PriceListMaster>1</PriceListMaster>
  </clsTillMenuPriceList>
  <clsTillMenuPriceList>
    <Code>sample string 2</Code>
    <Description>sample string 3</Description>
    <ID>1</ID>
    <PercentageDiscount>1</PercentageDiscount>
    <PriceListMaster>1</PriceListMaster>
  </clsTillMenuPriceList>
</ArrayOfclsTillMenuPriceList>