OperationNameVO.cs 631 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. namespace CLIP.eForm.Consent.Entity
  5. {
  6. [Serializable]
  7. class OperationNameVO
  8. {
  9. public OperationNameVO()
  10. {
  11. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
  12. {
  13. //if (property.DisplayName == "" || property.DisplayName == "")
  14. //{
  15. // property.SetValue(this, 0);
  16. //}
  17. //else
  18. //{
  19. // property.SetValue(this, "");
  20. //}
  21. }
  22. }
  23. }
  24. }