Table of Contents

Class RmaListViewModel

Namespace
Dynamicweb.Ecommerce.Frontend.ReturnMerchandiseAuthorization
Assembly
Dynamicweb.Ecommerce.dll
public class RmaListViewModel : FillableViewModelBase
Inheritance
RmaListViewModel
Inherited Members

Properties

CurrentPage

Gets or sets the current page number.

public int CurrentPage { get; set; }

Property Value

int

PageCount

Gets or sets the count of pages. If this value is greater than 0, the view model result will be paginated, otherwise, plain list.

public int PageCount { get; set; }

Property Value

int

PageSize

Gets or sets the items count per page.

public int PageSize { get; set; }

Property Value

int

Rmas

Gets or sets the list of RMAs.

public IList<RmaViewModel> Rmas { get; set; }

Property Value

IList<RmaViewModel>

TotalRmasCount

Gets or sets the total number of RMAs in the list.

public int TotalRmasCount { get; set; }

Property Value

int
To top