1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- namespace Wayne.Lib.Log
- {
- //public class EntityStatus
- //{
- // #region Fields
- // IdentifiableEntity entity;
- // string category;
- // string status;
- // EntityStatus[] subEntityStatus;
- // #endregion
- // #region Properties
- // public IIdentifiableEntity Entity
- // {
- // get { return entity; }
- // }
- // public string Category
- // {
- // get { return category; }
- // }
- // public string Status
- // {
- // get { return status; }
- // }
- // public EntityStatus[] SubEntityStatus
- // {
- // get { return subEntityStatus; }
- // set { subEntityStatus = value; }
- // }
- // #endregion
- //}
- //public static class StatusReport
- //{
- // #region Fields
- // static List<EntityStatus> entityStatus;
- // #endregion
- // #region Events
- // public static event EventHandler OnStatusChanged;
- // #endregion
- // #region Methods
- // public static void SetStatus(IIdentifiableEntity entity, string category, string status)
- // {
- // }
-
- // public static EntityStatus[] GetStatus()
- // {
- // }
- // #endregion
- //}
- }
|