Ejemplo n.º 1
0
        internal static SeriesOPMTitleCollection GetCollection(DataTable dataItems)
        {
            SeriesOPMTitleCollection listCollection = new SeriesOPMTitleCollection();

            SeriesOPMTitle current = null;

            if (dataItems != null)
            {
                for (int i = 0; i < dataItems.Rows.Count; i++)
                {
                    current = new SeriesOPMTitle(dataItems.Rows[i]);
                    listCollection.Add(current);
                }
            }
            else
            {
                throw new Exception("You cannot create a SeriesOPMTitle collection from a null data table.");
            }

            return(listCollection);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Determines whether the specified System.Object is equal to the current object.
        /// </summary>
        /// <param name="obj">The System.Object to compare with the current object.</param>
        /// <returns>Returns true if the specified System.Object is equal to the current object; otherwise, false.</returns>
        public override bool Equals(Object obj)
        {
            SeriesOPMTitle SeriesOPMTitleobj = obj as SeriesOPMTitle;

            return((SeriesOPMTitleobj == null) ? false : ((this.Series == SeriesOPMTitleobj.Series) && (this.SeriesOPMTitleName.Trim().ToLower() == SeriesOPMTitleobj.SeriesOPMTitleName.Trim().ToLower())));
        }