Пример #1
0
 public cCDT(string initName, int initId)
     : base(initName, initId)
 {
     CON  = new cCON();
     SUPs = new Dictionary <string, cSUP>();
 }
Пример #2
0
 public cCDT(string initName, int initId, cCON initCON, IDictionary <string, cSUP> initSUPs)
     : base(initName, initId)
 {
     CON  = initCON;
     SUPs = initSUPs;
 }
Пример #3
0
 public cCDT()
 {
     CON  = new cCON();
     SUPs = new Dictionary <string, cSUP>();
 }