Object.cs 193 B

123456789101112131415
  1. using System.ComponentModel;
  2. namespace ETModel
  3. {
  4. public abstract class Object: ISupportInitialize
  5. {
  6. public virtual void BeginInit()
  7. {
  8. }
  9. public virtual void EndInit()
  10. {
  11. }
  12. }
  13. }