/// <summary> /// Fill method for populating an entire collection of FHAVALoans /// </summary> public virtual void Fill(FHAVALoans fHAVALoans) { // create the connection to use SqlConnection cnn = new SqlConnection(FHAVALoan.GetConnectionString()); try { using (cnn) { // open the connection cnn.Open(); // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectFHAVALoans"); // Send the collection and data to the object factory CreateObjectsFromData(fHAVALoans, 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(FHAVALoan deleteObject) { // create a new instance of the connection SqlConnection cnn = new SqlConnection(FHAVALoan.GetConnectionString()); // create local variable array for the sql parameters SqlParameterHash sqlparams = null; try { // discover the parameters sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHAVALoan.GetConnectionString(), "gsp_DeleteFHAVALoan"); // Store the parameter for the LoanApplicationId attribute. sqlparams["@loanApplicationId"].Value = deleteObject.LoanApplicationId; using (cnn) { // open the connection cnn.Open(); // Execute the stored proc to perform the delete on the instance. SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_DeleteFHAVALoan", 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 GOVERNMENT_LOAN /// </summary> public void FillByGovernmentLoan(FHAVALoans fHAVALoans, System.Int64 loanApplicationId) { // create the connection to use SqlConnection cnn = new SqlConnection(FHAVALoan.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHAVALoan.GetConnectionString(), "gsp_SelectFHAVALoansByGovernmentLoan"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@loanApplicationId"].Value = loanApplicationId; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectFHAVALoansByGovernmentLoan", sqlparams); // Send the collection and data to the object factory. CreateObjectsFromData(fHAVALoans, 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(FHAVALoan fhavaloan, System.Int64 loanApplicationId) { // create the connection to use SqlConnection cnn = new SqlConnection(FHAVALoan.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHAVALoan.GetConnectionString(), "gsp_SelectFHAVALoan"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@loanApplicationId"].Value = loanApplicationId; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectFHAVALoan", sqlparams); if (datareader.Read()) { fhavaloan.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(FHAVALoan 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(FHAVALoan.GetConnectionString()); } try { // discover the parameters if (persistObject.Persisted) { sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHAVALoan.GetConnectionString(), "gsp_UpdateFHAVALoan"); } else { sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHAVALoan.GetConnectionString(), "gsp_CreateFHAVALoan"); } // Store the parameter for the BorrowerPaidFHA_VAClosingCostsAmount attribute. if (!persistObject.BorrowerPaidFHA_VAClosingCostsAmountIsNull) { sqlparams["@borrowerPaidFHA_VAClosingCostsAmount"].Value = persistObject.BorrowerPaidFHA_VAClosingCostsAmount; } // Store the parameter for the BorrowerPaidFHA_VAClosingCostsPercent attribute. if (!persistObject.BorrowerPaidFHA_VAClosingCostsPercentIsNull) { sqlparams["@borrowerPaidFHA_VAClosingCostsPercent"].Value = persistObject.BorrowerPaidFHA_VAClosingCostsPercent; } // Store the parameter for the GovernmentMortgageCreditCertificateAmount attribute. if (!persistObject.GovernmentMortgageCreditCertificateAmountIsNull) { sqlparams["@governmentMortgageCreditCertificateAmount"].Value = persistObject.GovernmentMortgageCreditCertificateAmount; } // Store the parameter for the GovernmentRefinanceType attribute. if (!persistObject.GovernmentRefinanceTypeIsNull) { sqlparams["@governmentRefinanceType"].Value = persistObject.GovernmentRefinanceType; } // Store the parameter for the OtherPartyPaidFHA_VAClosingCostsAmount attribute. if (!persistObject.OtherPartyPaidFHA_VAClosingCostsAmountIsNull) { sqlparams["@otherPartyPaidFHA_VAClosingCostsAmount"].Value = persistObject.OtherPartyPaidFHA_VAClosingCostsAmount; } // Store the parameter for the OtherPartyPaidFHA_VAClosingCostsPercent attribute. if (!persistObject.OtherPartyPaidFHA_VAClosingCostsPercentIsNull) { sqlparams["@otherPartyPaidFHA_VAClosingCostsPercent"].Value = persistObject.OtherPartyPaidFHA_VAClosingCostsPercent; } // Store the parameter for the PropertyEnergyEfficientHomeIndicator attribute. if (!persistObject.PropertyEnergyEfficientHomeIndicatorIsNull) { sqlparams["@propertyEnergyEfficientHomeIndicator"].Value = persistObject.PropertyEnergyEfficientHomeIndicator; } // Store the parameter for the SellerPaidFHA_VAClosingCostsPercent attribute. if (!persistObject.SellerPaidFHA_VAClosingCostsPercentIsNull) { sqlparams["@sellerPaidFHA_VAClosingCostsPercent"].Value = persistObject.SellerPaidFHA_VAClosingCostsPercent; } // Store the parameter for the LoanApplicationId attribute. sqlparams["@loanApplicationId"].Value = persistObject.LoanApplicationId; if (!persistObject.Persisted) { // store the create only (historical fixed) values } else { // store the update only (historical changeable) values } if (sqlTrans == null) { // Process using the isolated connection using (cnn) { // open the connection cnn.Open(); if (!persistObject.Persisted) { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_CreateFHAVALoan", sqlparams); } else { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateFHAVALoan", sqlparams); } // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } else { // Process using the shared transaction if (!persistObject.Persisted) { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_CreateFHAVALoan", sqlparams); } else { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateFHAVALoan", sqlparams); } } } catch (SqlException sqlex) { throw sqlex; } }