Esempio n. 1
0
 public CategoryOverviewModel()
 {
     Children       = new List <CategoryOverviewModel>();
     FeaturedItems  = new List <CategoryFeaturedItemOverviewModel>();
     FeaturedBrands = new List <CategoryOverviewModel>();
     ActiveWhatsNew = new CategoryWhatsNew();
     Banners        = new List <LargeBanner>();
 }
Esempio n. 2
0
 public void UpdateCategoryWhatsNew(CategoryWhatsNew whatsNew)
 {
     _categoryWhatsNewRepository.Update(whatsNew);
 }
Esempio n. 3
0
 public int InsertCategoryWhatsNew(CategoryWhatsNew item)
 {
     return(_categoryWhatsNewRepository.Create(item));
 }