public MarketSegment(object key, MarketSector parentSector, string name, string code) : base(key)
 {
     this.ParentSector = parentSector;
     this.Name         = name;
     this.Code         = code;
 }
 public MarketSegment(MarketSector parentSector, string name, string code) : this(null, parentSector, name, code)
 {
 }