public cCDT(string initName, int initId) : base(initName, initId) { CON = new cCON(); SUPs = new Dictionary <string, cSUP>(); }
public cCDT(string initName, int initId, cCON initCON, IDictionary <string, cSUP> initSUPs) : base(initName, initId) { CON = initCON; SUPs = initSUPs; }
public cCDT() { CON = new cCON(); SUPs = new Dictionary <string, cSUP>(); }