예제 #1
0
 public void Setup_FromBase(
     String GridName
     , ClsBase Datasource_Base
     , ClsBindGrid GridDefinition
     , List<String> List_TableKey = null
     , Boolean IsSelection = false
     , Boolean AllowSort = false
     , Boolean AllowPaging = false
     , Boolean IsDefault = false)
 {
     this.Setup(
         GridName
         , eSourceType.Base
         , Datasource_Base
         , GridDefinition
         , IsSelection
         , List_TableKey
         , AllowSort
         , AllowPaging
         , IsDefault);
 }
예제 #2
0
        protected void Setup(
			ClsBase Base
			, String GridDefinition_Name
			, Int64 System_ModulesID)
        {
            this.mBase = Base;
            this.mGridDef_Name = GridDefinition_Name;
            this.mSystem_ModulesID = System_ModulesID;
        }