Beispiel #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;
 }
Beispiel #2
0
 public ProductionWithCode(string name, Production tail) : base(name, name, tail)
 {
 }
Beispiel #3
0
 public ProductionWithCode(string name, string nameVar, Production tall) : base(name, nameVar, tall)
 {
 }