public EraRelation(Stems Foreign, Stems Primary, emEraRelation Value) { this.Foreign = Foreign; this.Primary = Primary; this.Value = Value; }
public EraRelation(Stems Foreign, Stems Primary, string Value) { this.Foreign = Foreign; this.Primary = Primary; this.Value = (emEraRelation)Enum.Parse(typeof(emEraRelation), Value,true); }