public static EntityInfo GetEntityInfo(ILogicEntity entity)
        {
            Type type = entity.GetType();

            return(GetEntityInfo(type));
        }
        public static void InsertEntityInfo(ILogicEntity entity, EntityInfo entityInfo)
        {
            Type type = entity.GetType();

            InsertEntityInfo(type, entityInfo);
        }