This commit is contained in:
22
PROMS/proms/Volian.CSLA.Library/VEObjects/VEReadOnlyItem.cs
Normal file
22
PROMS/proms/Volian.CSLA.Library/VEObjects/VEReadOnlyItem.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Collections;
|
||||
namespace Volian.CSLA.Library
|
||||
{
|
||||
public interface IVEReadOnlyItem
|
||||
{
|
||||
IList GetChildren(); // Returns a list of Business Objects
|
||||
bool GetChildrenLoaded(); // Have the Business Objects been Loaded
|
||||
bool HasChildren(); // Identifies if Children are available
|
||||
// Ideas Authorization
|
||||
//bool CanLock();
|
||||
//bool CanUnlock();
|
||||
//bool CanOpen();
|
||||
//bool CanEdit();
|
||||
//bool CanAdmin();
|
||||
// Ideas Security
|
||||
//bool Lock(string msg);
|
||||
//bool Unlock();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user