/// <summary> /// Fill method for populating an entire collection of FHALoans /// </summary> public virtual void Fill(FHALoans fHALoans) { // create the connection to use SqlConnection cnn = new SqlConnection(FHALoan.GetConnectionString()); try { using (cnn) { // open the connection cnn.Open(); // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectFHALoans"); // Send the collection and data to the object factory CreateObjectsFromData(fHALoans, 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(FHALoan deleteObject) { // create a new instance of the connection SqlConnection cnn = new SqlConnection(FHALoan.GetConnectionString()); // create local variable array for the sql parameters SqlParameterHash sqlparams = null; try { // discover the parameters sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHALoan.GetConnectionString(), "gsp_DeleteFHALoan"); // 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_DeleteFHALoan", 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 NationalHousingActSectionType /// </summary> public void FillByNationalHousingActSectionType(FHALoans fHALoans, System.Int16 id) { // create the connection to use SqlConnection cnn = new SqlConnection(FHALoan.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHALoan.GetConnectionString(), "gsp_SelectFHALoansByNationalHousingActSectionType"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@sectionOfActType"].Value = id; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectFHALoansByNationalHousingActSectionType", sqlparams); // Send the collection and data to the object factory. CreateObjectsFromData(fHALoans, 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(FHALoan fhaloan, System.Int64 loanApplicationId) { // create the connection to use SqlConnection cnn = new SqlConnection(FHALoan.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHALoan.GetConnectionString(), "gsp_SelectFHALoan"); 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_SelectFHALoan", sqlparams); if (datareader.Read()) { fhaloan.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(FHALoan 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(FHALoan.GetConnectionString()); } try { // discover the parameters if (persistObject.Persisted) { sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHALoan.GetConnectionString(), "gsp_UpdateFHALoan"); } else { sqlparams = SqlHelperParameterCache.GetSpParameterSet(FHALoan.GetConnectionString(), "gsp_CreateFHALoan"); } // Store the parameter for the BorrowerFinancedFHADiscountPointsAmount attribute. if (!persistObject.BorrowerFinancedFHADiscountPointsAmountIsNull) { sqlparams["@borrowerFinancedFHADiscountPointsAmount"].Value = persistObject.BorrowerFinancedFHADiscountPointsAmount; } // Store the parameter for the FHACoverageRenewalRatePercent attribute. if (!persistObject.FHACoverageRenewalRatePercentIsNull) { sqlparams["@fHACoverageRenewalRatePercent"].Value = persistObject.FHACoverageRenewalRatePercent; } // Store the parameter for the FHA_MIPremiumRefundAmount attribute. if (!persistObject.FHA_MIPremiumRefundAmountIsNull) { sqlparams["@fHA_MIPremiumRefundAmount"].Value = persistObject.FHA_MIPremiumRefundAmount; } // Store the parameter for the FHAUpfrontMIPremiumPercent attribute. if (!persistObject.FHAUpfrontMIPremiumPercentIsNull) { sqlparams["@fHAUpfrontMIPremiumPercent"].Value = persistObject.FHAUpfrontMIPremiumPercent; } // Store the parameter for the LenderIdentifier attribute. if (!persistObject.LenderIdentifierIsNull) { sqlparams["@lenderIdentifier"].Value = persistObject.LenderIdentifier; } // Store the parameter for the SponsorIdentifier attribute. if (!persistObject.SponsorIdentifierIsNull) { sqlparams["@sponsorIdentifier"].Value = persistObject.SponsorIdentifier; } // Store the parameter for the SectionOfActType attribute. if (!persistObject.SectionOfActTypeIsNull) { sqlparams["@sectionOfActType"].Value = persistObject.SectionOfActType; } // Store the parameter for the FHAAlimonyLiabilityTreatmentType2 attribute. if (!persistObject.FHAAlimonyLiabilityTreatmentType2IsNull) { sqlparams["@fHAAlimonyLiabilityTreatmentType2"].Value = persistObject.FHAAlimonyLiabilityTreatmentType2; } // 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_CreateFHALoan", sqlparams); } else { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateFHALoan", 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_CreateFHALoan", sqlparams); } else { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateFHALoan", sqlparams); } } } catch (SqlException sqlex) { throw sqlex; } }