Exemplo n.º 1
0
        //Current item page
        public ActionResult Current(int id)
        {
            StoreClassHelper helper = new StoreClassHelper(shopItemService);

            return(View(helper.ConvertFromDTOToViewModel(id)));
        }
Exemplo n.º 2
0
        //Store page with all products
        public ActionResult StoreMain()
        {
            StoreClassHelper helper = new StoreClassHelper(shopItemService);

            return(View(helper.MapDTOWithViewModel()));
        }