コード例 #1
0
        public PartialViewResult SetUnitsToFitInShoppingList(int id, int units)
        {
            AgenteShoppingList agente   = new AgenteShoppingList();
            string             publicID = EstadoUsuario.CurrentListPublicId;

            EVFitting evfit = agente.SetUnitsToFitInShoppingList(publicID, id, units);

            return(PartialView("PVFitInShoppingList", evfit));
        }