Esempio n. 1
0
        internal static SystemDataTypeWrapper ConvertEntityToWrapper(SystemDataTypeEntity entity)
        {
            if (entity == null)
            {
                return(null);
            }

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

            return(new SystemDataTypeWrapper(entity));
        }
Esempio n. 2
0
        internal static SystemDataTypeWrapper ConvertEntityToWrapper(SystemDataTypeEntity entity)
        {
            if (entity == null)
                return null;
				
            if (entity.Id == 0)
                return null;

            return new SystemDataTypeWrapper(entity);
        }
Esempio n. 3
0
 internal SystemDataTypeWrapper(SystemDataTypeEntity entityObj)
     : base(entityObj)
 {
 }
Esempio n. 4
0
 internal SystemDataTypeWrapper(SystemDataTypeEntity entityObj)
     : base(entityObj)
 {
 }