Exemplo n.º 1
0
 protected virtual void OnPromptConstData(PromptConstDataArgs e)
 {
     if (PromptConstData != null)
     {
         PromptConstData(this, e);
     }
 }
Exemplo n.º 2
0
        private DataView GetListDataByConstant(string strFieldName)
        {
            PromptConstDataArgs args = new PromptConstDataArgs(strFieldName, "");

            OnPromptConstData(args);
            return(null);
            //DataTable dt = TS.Win.ConfigData.RequestEntityData.RequestConstConfig( strFieldName, args.CustomerCriteria );
            //if( dt != null )
            //{
            //	return dt.DefaultView;
            //}
            //else
            //{
            //	return null;
            //}
        }