示例#1
0
        protected UniqueIdObject(IUniqueIdObject entity)
        {
            if (entity == null)
            {
                return;
            }

            Id = entity.Id;
        }
示例#2
0
        public UniqueIdEntity(IUniqueIdObject entity)
        {
            if (entity == null)
            {
                return;
            }

            Id = entity.Id;
        }