/// <summary> /// Persists the object. /// </summary> public virtual void Persist(Liability 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(Liability.GetConnectionString()); try { // discover the parameters if (persistObject.Persisted) sqlparams = SqlHelperParameterCache.GetSpParameterSet(Liability.GetConnectionString(), "gsp_UpdateLiability"); else sqlparams = SqlHelperParameterCache.GetSpParameterSet(Liability.GetConnectionString(), "gsp_CreateLiability"); // Store the parameter for the LoanApplicationId attribute. sqlparams["@loanApplicationId"].Value = persistObject.LoanApplicationId; // Store the parameter for the BorrowerId attribute. sqlparams["@borrowerId"].Value = persistObject.BorrowerId; // Store the parameter for the REO_ID attribute. if (!persistObject.REO_IDIsNull) sqlparams["@rEO_ID"].Value = persistObject.REO_ID; // Store the parameter for the HolderStreetAddress attribute. if (!persistObject.HolderStreetAddressIsNull) sqlparams["@holderStreetAddress"].Value = persistObject.HolderStreetAddress; // Store the parameter for the HolderCity attribute. if (!persistObject.HolderCityIsNull) sqlparams["@holderCity"].Value = persistObject.HolderCity; // Store the parameter for the HolderState attribute. if (!persistObject.HolderStateIsNull) sqlparams["@holderState"].Value = persistObject.HolderState; // Store the parameter for the HolderPostalCode attribute. if (!persistObject.HolderPostalCodeIsNull) sqlparams["@holderPostalCode"].Value = persistObject.HolderPostalCode; // Store the parameter for the AlimonyOwedToName attribute. if (!persistObject.AlimonyOwedToNameIsNull) sqlparams["@alimonyOwedToName"].Value = persistObject.AlimonyOwedToName; // Store the parameter for the AccountIdentifier attribute. if (!persistObject.AccountIdentifierIsNull) sqlparams["@accountIdentifier"].Value = persistObject.AccountIdentifier; // Store the parameter for the ExclusionIndicator attribute. sqlparams["@exclusionIndicator"].Value = persistObject.ExclusionIndicator; // Store the parameter for the HolderName attribute. if (!persistObject.HolderNameIsNull) sqlparams["@holderName"].Value = persistObject.HolderName; // Store the parameter for the MonthlyPaymentAmount attribute. if (!persistObject.MonthlyPaymentAmountIsNull) sqlparams["@monthlyPaymentAmount"].Value = persistObject.MonthlyPaymentAmount; // Store the parameter for the PayoffStatusIndicator attribute. sqlparams["@payoffStatusIndicator"].Value = persistObject.PayoffStatusIndicator; // Store the parameter for the PayoffWithCurrentAssetsIndicator attribute. sqlparams["@payoffWithCurrentAssetsIndicator"].Value = persistObject.PayoffWithCurrentAssetsIndicator; // Store the parameter for the RemainingTermMonths attribute. if (!persistObject.RemainingTermMonthsIsNull) sqlparams["@remainingTermMonths"].Value = persistObject.RemainingTermMonths; // Store the parameter for the Type attribute. sqlparams["@type"].Value = persistObject.Type; // Store the parameter for the UnpaidBalanceAmount attribute. if (!persistObject.UnpaidBalanceAmountIsNull) sqlparams["@unpaidBalanceAmount"].Value = persistObject.UnpaidBalanceAmount; // Store the parameter for the SubjectLoanResubordinationIndicator attribute. sqlparams["@subjectLoanResubordinationIndicator"].Value = persistObject.SubjectLoanResubordinationIndicator; // Store the parameter for the Id attribute. if (!persistObject.Persisted) { // store the create only (historical fixed) values } else { // store the update only (historical changeable) values // Store the parameter for the Id attribute. sqlparams["@id"].Value = persistObject.Id; } if (sqlTrans == null) { // Process using the isolated connection using (cnn) { // open the connection cnn.Open(); if (!persistObject.Persisted) { persistObject._id = Convert.ToInt64(SqlHelper.ExecuteScalar(cnn, CommandType.StoredProcedure, "gsp_CreateLiability", sqlparams)); } else { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateLiability", sqlparams); } // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } else { // Process using the shared transaction if (!persistObject.Persisted) { persistObject._id = Convert.ToInt64(SqlHelper.ExecuteScalar(sqlTrans, CommandType.StoredProcedure, "gsp_CreateLiability", sqlparams)); } else { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateLiability", sqlparams); } } } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Fills a single instance with data based on its primary key values. /// </summary> public virtual void Fill(Liability liability, System.Int64 id) { // create the connection to use SqlConnection cnn = new SqlConnection(Liability.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(Liability.GetConnectionString(), "gsp_SelectLiability"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@id"].Value = id; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectLiability", sqlparams); if (datareader.Read()) liability.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(Liability persistObject) { // Make a call to the overloaded method with a null transaction Persist(persistObject, null); }
/// <summary> /// Deletes the object. /// </summary> public virtual void Delete(Liability deleteObject) { // create a new instance of the connection SqlConnection cnn = new SqlConnection(Liability.GetConnectionString()); // create local variable array for the sql parameters SqlParameterHash sqlparams = null; try { // discover the parameters sqlparams = SqlHelperParameterCache.GetSpParameterSet(Liability.GetConnectionString(), "gsp_DeleteLiability"); // Store the parameter for the Id attribute. sqlparams["@id"].Value = deleteObject.Id; using (cnn) { // open the connection cnn.Open(); // Execute the stored proc to perform the delete on the instance. SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_DeleteLiability", sqlparams); // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } catch (SqlException sqlex) { throw sqlex; } // nullify the reference deleteObject = null; }