public override string TransformFieldUpload(ConfigExecutetemplate configExecutetemplate, Info info, string propertyName, string textTemplate)
        {
            if (configExecutetemplate.ConfigContext.Arquiteture == ArquitetureType.TransactionScript)
            {
                return(this._transaction.TransformFieldUpload(configExecutetemplate, info, propertyName, textTemplate));
            }

            return(this._ddd.TransformFieldUpload(configExecutetemplate, info, propertyName, textTemplate));
        }
 public override string TransformFieldTextTag(ConfigExecutetemplate configExecutetemplate, Info info, string propertyName, string textTemplate)
 {
     throw new NotImplementedException();
 }
        public static bool RunRestrictions(FieldConfigShow rest, TableInfo tableInfo, Info info, string propertyName, EOperation opList)
        {
            switch (rest)
            {
            case FieldConfigShow.ShowAll:
                return(RestrictionBlock(tableInfo, info, propertyName, opList));

            case FieldConfigShow.HideAll:
                return(RestrictionAllow(tableInfo, info, propertyName, opList));
            }
            return(false);
        }