StatusReport.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. namespace Wayne.Lib.Log
  2. {
  3. //public class EntityStatus
  4. //{
  5. // #region Fields
  6. // IdentifiableEntity entity;
  7. // string category;
  8. // string status;
  9. // EntityStatus[] subEntityStatus;
  10. // #endregion
  11. // #region Properties
  12. // public IIdentifiableEntity Entity
  13. // {
  14. // get { return entity; }
  15. // }
  16. // public string Category
  17. // {
  18. // get { return category; }
  19. // }
  20. // public string Status
  21. // {
  22. // get { return status; }
  23. // }
  24. // public EntityStatus[] SubEntityStatus
  25. // {
  26. // get { return subEntityStatus; }
  27. // set { subEntityStatus = value; }
  28. // }
  29. // #endregion
  30. //}
  31. //public static class StatusReport
  32. //{
  33. // #region Fields
  34. // static List<EntityStatus> entityStatus;
  35. // #endregion
  36. // #region Events
  37. // public static event EventHandler OnStatusChanged;
  38. // #endregion
  39. // #region Methods
  40. // public static void SetStatus(IIdentifiableEntity entity, string category, string status)
  41. // {
  42. // }
  43. // public static EntityStatus[] GetStatus()
  44. // {
  45. // }
  46. // #endregion
  47. //}
  48. }