/// <summary> /// Fill method for populating an entire collection of CreditScores /// </summary> public virtual void Fill(CreditScores creditScores) { // create the connection to use SqlConnection cnn = new SqlConnection(CreditScore.GetConnectionString()); try { using (cnn) { // open the connection cnn.Open(); // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectCreditScores"); // Send the collection and data to the object factory CreateObjectsFromData(creditScores, datareader); // close the connection cnn.Close(); } // nullify the connection cnn = null; } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Deletes the object. /// </summary> public virtual void Delete(CreditScore deleteObject) { // create a new instance of the connection SqlConnection cnn = new SqlConnection(CreditScore.GetConnectionString()); // create local variable array for the sql parameters SqlParameterHash sqlparams = null; try { // discover the parameters sqlparams = SqlHelperParameterCache.GetSpParameterSet(CreditScore.GetConnectionString(), "gsp_DeleteCreditScore"); // Store the parameter for the CreditScoreID attribute. sqlparams["@creditScoreID"].Value = deleteObject.CreditScoreID; using (cnn) { // open the connection cnn.Open(); // Execute the stored proc to perform the delete on the instance. SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_DeleteCreditScore", sqlparams); // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } catch (SqlException sqlex) { throw sqlex; } // nullify the reference deleteObject = null; }
/// <summary> /// Fill method for populating a collection by CreditScoreExclusionReasonType /// </summary> public void FillByCreditScoreExclusionReasonType(CreditScores creditScores, System.Int16 id) { // create the connection to use SqlConnection cnn = new SqlConnection(CreditScore.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(CreditScore.GetConnectionString(), "gsp_SelectCreditScoresByCreditScoreExclusionReasonType"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@creditScoreExclusionType"].Value = id; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectCreditScoresByCreditScoreExclusionReasonType", sqlparams); // Send the collection and data to the object factory. CreateObjectsFromData(creditScores, datareader); // close the connection cnn.Close(); } // nullify the connection cnn = null; } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Fills a single instance with data based on its primary key values. /// </summary> public virtual void Fill(CreditScore creditscore, System.Int64 creditScoreID) { // create the connection to use SqlConnection cnn = new SqlConnection(CreditScore.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(CreditScore.GetConnectionString(), "gsp_SelectCreditScore"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@creditScoreID"].Value = creditScoreID; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectCreditScore", sqlparams); if (datareader.Read()) { creditscore.SetMembers(ref datareader); } cnn.Close(); // close the connection } // nullify the connection var cnn = null; } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Persists the object. /// </summary> public virtual void Persist(CreditScore persistObject, SqlTransaction sqlTrans) { // create local variable array for the sql parameters SqlParameterHash sqlparams = null; // Create a local variable for the connection SqlConnection cnn = null; // Use the parameter overload or create a new instance if (sqlTrans == null) { cnn = new SqlConnection(CreditScore.GetConnectionString()); } try { // discover the parameters if (persistObject.Persisted) { sqlparams = SqlHelperParameterCache.GetSpParameterSet(CreditScore.GetConnectionString(), "gsp_UpdateCreditScore"); } else { sqlparams = SqlHelperParameterCache.GetSpParameterSet(CreditScore.GetConnectionString(), "gsp_CreateCreditScore"); } // Store the parameter for the CreditReportIdentifier attribute. if (!persistObject.CreditReportIdentifierIsNull) { sqlparams["@creditReportIdentifier"].Value = persistObject.CreditReportIdentifier; } // Store the parameter for the CreditScoreDate attribute. if (!persistObject.CreditScoreDateIsNull) { sqlparams["@creditScoreDate"].Value = persistObject.CreditScoreDate; } // Store the parameter for the CreditScoreModelNameTypeOtherDescription attribute. if (!persistObject.CreditScoreModelNameTypeOtherDescriptionIsNull) { sqlparams["@creditScoreModelNameTypeOtherDescription"].Value = persistObject.CreditScoreModelNameTypeOtherDescription; } // Store the parameter for the CreditScoreValue attribute. if (!persistObject.CreditScoreValueIsNull) { sqlparams["@creditScoreValue"].Value = persistObject.CreditScoreValue; } // Store the parameter for the BorrowerId attribute. sqlparams["@borrowerId"].Value = persistObject.BorrowerId; // Store the parameter for the CreditRepositorySourceType attribute. if (!persistObject.CreditRepositorySourceTypeIsNull) { sqlparams["@creditRepositorySourceType"].Value = persistObject.CreditRepositorySourceType; } // Store the parameter for the CreditScoreExclusionType attribute. if (!persistObject.CreditScoreExclusionTypeIsNull) { sqlparams["@creditScoreExclusionType"].Value = persistObject.CreditScoreExclusionType; } // Store the parameter for the CreditScoreModelNameType attribute. if (!persistObject.CreditScoreModelNameTypeIsNull) { sqlparams["@creditScoreModelNameType"].Value = persistObject.CreditScoreModelNameType; } // Store the parameter for the CreditScoreID attribute. if (!persistObject.Persisted) { // store the create only (historical fixed) values } else { // store the update only (historical changeable) values // Store the parameter for the CreditScoreID attribute. sqlparams["@creditScoreID"].Value = persistObject.CreditScoreID; } if (sqlTrans == null) { // Process using the isolated connection using (cnn) { // open the connection cnn.Open(); if (!persistObject.Persisted) { persistObject._creditscoreid = Convert.ToInt64(SqlHelper.ExecuteScalar(cnn, CommandType.StoredProcedure, "gsp_CreateCreditScore", sqlparams)); } else { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateCreditScore", sqlparams); } // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } else { // Process using the shared transaction if (!persistObject.Persisted) { persistObject._creditscoreid = Convert.ToInt64(SqlHelper.ExecuteScalar(sqlTrans, CommandType.StoredProcedure, "gsp_CreateCreditScore", sqlparams)); } else { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateCreditScore", sqlparams); } } } catch (SqlException sqlex) { throw sqlex; } }