/// <summary> /// Fill method for populating an entire collection of MortgageTermsCollection /// </summary> public virtual void Fill(MortgageTermsCollection mortgageTermsCollection) { // create the connection to use SqlConnection cnn = new SqlConnection(MortgageTerms.GetConnectionString()); try { using (cnn) { // open the connection cnn.Open(); // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectMortgageTermsCollection"); // Send the collection and data to the object factory CreateObjectsFromData(mortgageTermsCollection, 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(MortgageTerms deleteObject) { // create a new instance of the connection SqlConnection cnn = new SqlConnection(MortgageTerms.GetConnectionString()); // create local variable array for the sql parameters SqlParameterHash sqlparams = null; try { // discover the parameters sqlparams = SqlHelperParameterCache.GetSpParameterSet(MortgageTerms.GetConnectionString(), "gsp_DeleteMortgageTerms"); // 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_DeleteMortgageTerms", 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 MortgageType /// </summary> public void FillByMortgageType(MortgageTermsCollection mortgageTermsCollection, System.Int16 id) { // create the connection to use SqlConnection cnn = new SqlConnection(MortgageTerms.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(MortgageTerms.GetConnectionString(), "gsp_SelectMortgageTermsCollectionByMortgageType"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@mortgageType"].Value = id; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectMortgageTermsCollectionByMortgageType", sqlparams); // Send the collection and data to the object factory. CreateObjectsFromData(mortgageTermsCollection, 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(MortgageTerms mortgageterms, System.Int64 loanApplicationId) { // create the connection to use SqlConnection cnn = new SqlConnection(MortgageTerms.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(MortgageTerms.GetConnectionString(), "gsp_SelectMortgageTerms"); 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_SelectMortgageTerms", sqlparams); if (datareader.Read()) { mortgageterms.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(MortgageTerms 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(MortgageTerms.GetConnectionString()); } try { // discover the parameters if (persistObject.Persisted) { sqlparams = SqlHelperParameterCache.GetSpParameterSet(MortgageTerms.GetConnectionString(), "gsp_UpdateMortgageTerms"); } else { sqlparams = SqlHelperParameterCache.GetSpParameterSet(MortgageTerms.GetConnectionString(), "gsp_CreateMortgageTerms"); } // Store the parameter for the AgencyCaseIdentifier attribute. if (!persistObject.AgencyCaseIdentifierIsNull) { sqlparams["@agencyCaseIdentifier"].Value = persistObject.AgencyCaseIdentifier; } // Store the parameter for the ARMTypeDescription attribute. if (!persistObject.ARMTypeDescriptionIsNull) { sqlparams["@aRMTypeDescription"].Value = persistObject.ARMTypeDescription; } // Store the parameter for the BaseLoanAmount attribute. if (!persistObject.BaseLoanAmountIsNull) { sqlparams["@baseLoanAmount"].Value = persistObject.BaseLoanAmount; } // Store the parameter for the BorrowerRequestedLoanAmount attribute. if (!persistObject.BorrowerRequestedLoanAmountIsNull) { sqlparams["@borrowerRequestedLoanAmount"].Value = persistObject.BorrowerRequestedLoanAmount; } // Store the parameter for the LenderCaseIdentifier attribute. if (!persistObject.LenderCaseIdentifierIsNull) { sqlparams["@lenderCaseIdentifier"].Value = persistObject.LenderCaseIdentifier; } // Store the parameter for the LoanAmortizationTermMonths attribute. if (!persistObject.LoanAmortizationTermMonthsIsNull) { sqlparams["@loanAmortizationTermMonths"].Value = persistObject.LoanAmortizationTermMonths; } // Store the parameter for the OtherMortgageTypeDescription attribute. if (!persistObject.OtherMortgageTypeDescriptionIsNull) { sqlparams["@otherMortgageTypeDescription"].Value = persistObject.OtherMortgageTypeDescription; } // Store the parameter for the OtherAmortizationTypeDescription attribute. if (!persistObject.OtherAmortizationTypeDescriptionIsNull) { sqlparams["@otherAmortizationTypeDescription"].Value = persistObject.OtherAmortizationTypeDescription; } // Store the parameter for the RequestedInterestRatePercent attribute. if (!persistObject.RequestedInterestRatePercentIsNull) { sqlparams["@requestedInterestRatePercent"].Value = persistObject.RequestedInterestRatePercent; } // Store the parameter for the LoanAmortizationType attribute. if (!persistObject.LoanAmortizationTypeIsNull) { sqlparams["@loanAmortizationType"].Value = persistObject.LoanAmortizationType; } // Store the parameter for the MortgageType attribute. if (!persistObject.MortgageTypeIsNull) { sqlparams["@mortgageType"].Value = persistObject.MortgageType; } // 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_CreateMortgageTerms", sqlparams); } else { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateMortgageTerms", 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_CreateMortgageTerms", sqlparams); } else { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateMortgageTerms", sqlparams); } } } catch (SqlException sqlex) { throw sqlex; } }