internal static SystemWorkFlowWrapper ConvertEntityToWrapper(SystemWorkFlowEntity entity)
        {
            if (entity == null)
            {
                return(null);
            }

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

            return(new SystemWorkFlowWrapper(entity));
        }
 internal SystemWorkFlowWrapper(SystemWorkFlowEntity entityObj)
     : base(entityObj)
 {
 }
Esempio n. 3
0
 internal SystemWorkFlowWrapper(SystemWorkFlowEntity entityObj)
 {
     entity = entityObj;
 }