Пример #1
0
        public PartialViewResult UpdateMarketItemToShoppingList(int id, int units = 1)
        {
            AgenteShoppingList agente = new AgenteShoppingList();
            MarketItem         item   = agente.AddOrUpdateMarketItemEnShoppingList(EstadoUsuario.CurrentListPublicId, id, units);

            return(PartialView("PVMarketItemEnShoppingList", item));
        }