Example #1
0
 public SearchModel()
 {
     PagingFilteringContext = new CatalogPagingFilteringModel();
     Products               = new List <ProductOverviewModel>();
     AvailableCategories    = new List <SelectListItem>();
     AvailableManufacturers = new List <SelectListItem>();
     AvailableVendors       = new List <SelectListItem>();
 }
Example #2
0
 public CategoryModel()
 {
     PictureModel           = new PictureModel();
     FeaturedProducts       = new List <ProductOverviewModel>();
     Products               = new List <ProductOverviewModel>();
     PagingFilteringContext = new CatalogPagingFilteringModel();
     SubCategories          = new List <SubCategoryModel>();
     CategoryBreadcrumb     = new List <CategoryModel>();
 }
 public ProductsByTagModel()
 {
     Products = new List <ProductOverviewModel>();
     PagingFilteringContext = new CatalogPagingFilteringModel();
 }
Example #4
0
 public VendorModel()
 {
     Products = new List <ProductOverviewModel>();
     PagingFilteringContext = new CatalogPagingFilteringModel();
     Address = new VendorAddressModel();
 }
Example #5
0
 public BrandModel()
 {
     PictureModel           = new PictureModel();
     Products               = new List <ProductOverviewModel>();
     PagingFilteringContext = new CatalogPagingFilteringModel();
 }