您目前尚未登陆,请选择【登陆】或【注册
首页->博客论坛->LiveBlog v1.0测试版源码>>LiveBlog.Core/BusinessBase.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:LiveBlog v1.0测试版源码
当前文件:文件类型 LiveBlog/LiveBlog.Core/BusinessBase.cs打开代码结构图
普通视图
		            
1Using 10 11namespace LiveBlog.Core 12{ 13 /// <summary> 14 /// This is the base class from which most business objects will be derived. 15 /// To create a business object, inherit from this class. 16 /// </summary> 17 /// <typeparam name="TYPE">The type of the derived class.</typeparam> 18 /// <typeparam name="KEY">The type of the Id property.</typeparam> 19 [Serializable] 20 public abstract class BusinessBase<TYPE, KEY> : IDataErrorInfo, INotifyPropertyChanged, IChangeTracking, IDisposable where TYPE : BusinessBase<TYPE, KEY>, new() 21 { 22 23 Properties 72 73 IsNew, IsDeleted, IsChanged 176 177 Validation 244 245 Methods