/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of SALSalesLineCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:56:03 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static SALSalesLineCollection PopulateObjectsFromReader(IDataReader rdr) { SALSalesLineCollection list = new SALSalesLineCollection(); while (rdr.Read()) { SALSalesLine obj = new SALSalesLine(); PopulateObjectFromReader(obj, rdr); list.Add(obj); } return(list); }
/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of SALSalesLineCollection</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/27/2014 6:56:03 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static SALSalesLineCollection PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper) { SALSalesLineCollection list = new SALSalesLineCollection(); if (rdr.Read()) { SALSalesLine obj = new SALSalesLine(); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new SALSalesLine(); PopulateObjectFromReader(obj, rdr); list.Add(obj); } oDatabaseHelper.Dispose(); return(list); } else { oDatabaseHelper.Dispose(); return(null); } }