예제 #1
0
        internal static List <FLSAType> GetCollection(DataTable dataItems)
        {
            List <FLSAType> listCollection = new List <FLSAType>();
            FLSAType        current        = null;

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

            return(listCollection);
        }
예제 #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)
        {
            FLSAType FLSATypeobj = obj as FLSAType;

            return((FLSATypeobj == null) ? false : (this.FLSATypeID == FLSATypeobj.FLSATypeID));
        }
예제 #3
0
 public static List <FLSAType> GetAllFLSATypes()
 {
     return(FLSAType.GetCollection(ExecuteDataTable("spr_GetAllFLSATypes")));
 }