CSLA - Format, Minimal, VEObject

This commit is contained in:
2026-09-01 08:30:06 -04:00
parent dab65dbfb6
commit dc5d547449
15 changed files with 2423 additions and 6420 deletions
@@ -1,6 +1,3 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
namespace VEPROMS.CSLA.Library
@@ -9,7 +6,6 @@ namespace VEPROMS.CSLA.Library
public interface IVEDrillDownReadOnly
{
System.Collections.IList GetChildren(); // Returns a list of Business Objects
//bool ChildrenAreLoaded { get; }; // Have the Business Objects been Loaded
bool HasChildren { get; } // Identifies if Children are available
IVEDrillDownReadOnly ActiveParent { get; }
FormatInfo ActiveFormat { get; }
@@ -25,17 +21,6 @@ namespace VEPROMS.CSLA.Library
bool IsProcedure { get; }
bool IsSection { get; }
bool IsStep { get; }
//IVEDrillDown Get();
//bool HasStandardSteps();
// Ideas Authorization
//bool CanLock();
//bool CanUnlock();
//bool CanOpen();
//bool CanEdit();
//bool CanAdmin();
// Ideas Security
//bool Lock(string msg);
//bool Unlock();
}
[TypeConverter(typeof(ExpandableObjectConverter))]
public interface IVEDrillDown : IVEHasBrokenRules