CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
IContainsDeletedList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IContainsDeletedList.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Interface implemented by a list which tracks its deleted items</summary>
7//-----------------------------------------------------------------------
8
9using System;
10using Csla.Core;
11using System.ComponentModel;
13using System.Collections.Specialized;
14using System.Collections.Generic;
15
16namespace Csla
17{
21 public interface IContainsDeletedList
22 {
26 IEnumerable<IEditableBusinessObject> DeletedList { get; }
27 }
28}
Defines an object that holds a list of deleted items.
IEnumerable< IEditableBusinessObject > DeletedList
List of deleted child objects