Exemplo n.º 1
0
        internal static void Update(EditFormItem item)
        {
            var updatedItem = items.SingleOrDefault(x => x.Id == item.Id);

            if (updatedItem != null)
            {
                updatedItem.ProductName = item.ProductName;
                updatedItem.Price       = item.Price;
            }
        }
        internal static void Update(EditFormItem item)
        {
            // throw new Exception("Some sensitive data ***");
            var updatedItem = items.SingleOrDefault(x => x.Id == item.Id);

            if (updatedItem != null)
            {
                updatedItem.ProductName = item.ProductName;
                updatedItem.Price       = item.Price;
            }
        }