Inheritance: IItemListAction
Exemplo n.º 1
0
        public bool RemoveItemInList(int parentId, string field, int index)
        {
            var action = new RemoveItem(index);

            ModifyItemList(parentId, field, action);
            return(true);
        }
Exemplo n.º 2
0
 public bool RemoveItemInList(int parentId, string field, int index)
 {
     var action = new RemoveItem(index);
     ModifyItemList(parentId, field, action);
     return true;
 }