This commit is contained in:
2006-11-14 14:33:33 +00:00
commit a0cad33b0f
180 changed files with 40199 additions and 0 deletions

View 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();
}
}