Exemple #1
0
        internal static SystemRichTextWrapper ConvertEntityToWrapper(SystemRichTextEntity entity)
        {
            if (entity == null)
            {
                return(null);
            }

            if (entity.Id == 0)
            {
                return(null);
            }

            return(new SystemRichTextWrapper(entity));
        }
Exemple #2
0
 internal SystemRichTextWrapper(SystemRichTextEntity entityObj)
     : base(entityObj)
 {
 }