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