Exemplo n.º 1
0
		public GedcomFamilyRecord()
		{
			_Events = new GedcomRecordList<GedcomFamilyEvent>();
			_Events.Changed += ListChanged;
			_Children = new GedcomRecordList<string>();
			_Children.Changed += ListChanged;

			_startStatus = MarriageStartStatus.Unknown;
		}
Exemplo n.º 2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="GedcomFamilyRecord"/> class.
        /// </summary>
        public GedcomFamilyRecord()
        {
            events            = new GedcomRecordList <GedcomFamilyEvent>();
            events.Changed   += ListChanged;
            children          = new GedcomRecordList <string>();
            children.Changed += ListChanged;

            startStatus = MarriageStartStatus.Unknown;
        }