Holds information about an additional date on this record
        /// <summary> Add a new frequency to this origination information </summary>
        /// <param name="OtherDate"> Other date object to add </param>
        public void Add_Date_Other(Origin_Info_Other_Date OtherDate)
        {
            if (otherDates == null)
            {
                otherDates = new List <Origin_Info_Other_Date>();
            }

            otherDates.Add(OtherDate);
        }
        /// <summary> Add a new other date to this origination information </summary>
        /// <param name="Value"> Date value for this other date </param>
        /// <param name="Type"> Type of date ( or display label ) </param>
        public Origin_Info_Other_Date Add_Date_Other(string Value, string Type)
        {
            if (otherDates == null)
            {
                otherDates = new List <Origin_Info_Other_Date>();
            }

            Origin_Info_Other_Date newOtherDate = new Origin_Info_Other_Date(Value, Type);

            otherDates.Add(newOtherDate);
            return(newOtherDate);
        }
        /// <summary> Add a new frequency to this origination information </summary>
        /// <param name="OtherDate"> Other date object to add </param>
        public void Add_Date_Other(Origin_Info_Other_Date OtherDate )
        {
            if (otherDates == null)
                otherDates = new List<Origin_Info_Other_Date>();

            otherDates.Add(OtherDate);
        }
        /// <summary> Add a new other date to this origination information </summary>
        /// <param name="Value"> Date value for this other date </param>
        /// <param name="Type"> Type of date ( or display label ) </param>
        public Origin_Info_Other_Date Add_Date_Other(string Value, string Type)
        {
            if (otherDates == null)
                otherDates = new List<Origin_Info_Other_Date>();

            Origin_Info_Other_Date newOtherDate = new Origin_Info_Other_Date(Value, Type);
            otherDates.Add(newOtherDate);
            return newOtherDate;
        }