@page "/cdis/home"
C-Discount Home
Get Seller Address
@if (SellerInfo == null)
{
...please wait
}
else
{
- address1
- @SellerInfo.address1
- address2
- @SellerInfo.address2
- apartment_number
- @SellerInfo.apartment_number
- building
- @SellerInfo.building
- city
- @SellerInfo.city
- company_name
- @SellerInfo.company_name
- country
- @SellerInfo.country
- county
- @SellerInfo.county
- first_name
- @SellerInfo.first_name
- instructions
- @SellerInfo.instructions
- last_name
- @SellerInfo.last_name
- place_name
- @SellerInfo.place_name
- relay_id
- @SellerInfo.relay_id
- street
- @SellerInfo.street
- zip_code
- @SellerInfo.zip_code
- civility
- @SellerInfo.civility
}
Get Seller Head Address
@if (SellerInfoHead == null)
{
...please wait
}
else
{
- city
- @SellerInfoHead.head_office_city
- country
- @SellerInfoHead.head_office_country
- zip_code
- @SellerInfoHead.head_office_zip_code
- Shipping Country
- @SellerInfoHead.shipping_country
}
Sales Orders
@if (SalesResponse == null)
{
please wait...
}
else
{
Number of records: @SalesResponse.count
Next Page: @SalesResponse.next_page_info
Sales Records:
@SalesResponse.orders.ToString()
}
Transactions Orders
@if (TransResponse == null)
{
please wait...
}
else
{
Number of records: @TransResponse.count
Sales Records:
}
end
@code {
}