Example #1
0
 public AppMngment()
 {
     this.config = new ConfigCustom();
 }
Example #2
0
 public SanctionList()
     : base()
 {
     this._config = new ConfigCustom();
 }
Example #3
0
 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;
 }