示例#1
0
 public EraRelation(Stems Foreign, Stems Primary, emEraRelation Value)
 {
     this.Foreign = Foreign;
     this.Primary = Primary;
     this.Value = Value;
 }
示例#2
0
 public EraRelation(Stems Foreign, Stems Primary, string Value)
 {
     this.Foreign = Foreign;
     this.Primary = Primary;
     this.Value = (emEraRelation)Enum.Parse(typeof(emEraRelation), Value,true);
 }