Interface ISoCollection
Namespace: SuperOffice.Data
Assembly: SoDataBase.dll
Syntax
public interface ISoCollection : IEnumerable, IList, ICollection
Remarks
Properties
IsDirty
Is the object dirty, e.g. has some of the data in the object been changed?
Declaration
bool IsDirty { get; }
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
Methods
Add(ISoItem)
Adds the specified item.
Declaration
int Add(ISoItem item)
Parameters
Type | Name | Description |
---|---|---|
ISoItem | item | The item. |
Returns
Type | Description |
---|---|
Int32 | 0-based index of the item. |
Remarks
AddNew()
Declaration
ISoItem AddNew()
Returns
Type | Description |
---|---|
ISoItem |
Remarks
Extension Methods
EnumUtil.MapEnums<From, To>(From)