/// <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 CampaignMasters</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 1/8/2010 11:55:21 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static AutomationMasters PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper, string ConnectionString) { AutomationMasters list = new AutomationMasters(); if (rdr.Read()) { AutomationMaster obj = new AutomationMaster(ConnectionString); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new AutomationMaster(ConnectionString); PopulateObjectFromReader(obj, rdr); list.Add(obj); } oDatabaseHelper.Dispose(); return list; } else { oDatabaseHelper.Dispose(); return null; } }
/// <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 CampaignMasters</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 1/8/2010 11:55:21 AM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static AutomationMasters PopulateObjectsFromReader(IDataReader rdr, string ConnectionString) { AutomationMasters list = new AutomationMasters(); while (rdr.Read()) { AutomationMaster obj = new AutomationMaster(ConnectionString); PopulateObjectFromReader(obj, rdr); list.Add(obj); } return list; }