コード例 #1
0
ファイル: AppMngment.cs プロジェクト: devshark/DTExecutor
 public AppMngment()
 {
     this.config = new ConfigCustom();
 }
コード例 #2
0
ファイル: SanctionList.cs プロジェクト: devshark/DTExecutor
 public SanctionList()
     : base()
 {
     this._config = new ConfigCustom();
 }
コード例 #3
0
ファイル: AppMngment.cs プロジェクト: devshark/DTExecutor
 public static List<SkelCustom> getCustomExecList(ConfigCustom config)
 {
     List<SkelCustom> cus = new List<SkelCustom>();
     foreach (Hashtable item in config.ExecList)
     {
         cus.Add(new SkelCustom(item));
     }
     return cus;
 }