Mercurial > pub > bltoolkit
view Source/Common/EntityBaseT.cs @ 7:99cd4f3947d8
Закомментированы строки мешающие добавлению авиа дежурств.
author | nickolay |
---|---|
date | Fri, 27 Oct 2017 18:26:29 +0300 |
parents | f990fcb411a9 |
children |
line wrap: on
line source
using System; using BLToolkit.Reflection; namespace BLToolkit.Common { [Serializable] public abstract class EntityBase<T> : EntityBase where T : EntityBase<T> { #region CreateInstance public static T CreateInstance() { return TypeAccessor.CreateInstanceEx<T>(); } #endregion #region Clone public virtual T Clone() { return (T)TypeAccessor.Copy(this); } #endregion } }