Esempio n. 1
0
 public ProductionWithCode(string name, string nameVar, Production tail, string code) : this(name, nameVar, tail)
 {
     code = code.Substring(1, code.Length - 2);
     Code = code;
 }
Esempio n. 2
0
 public ProductionWithCode(string name, Production tail) : base(name, name, tail)
 {
 }
Esempio n. 3
0
 public ProductionWithCode(string name, string nameVar, Production tall) : base(name, nameVar, tall)
 {
 }