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