/// <summary>
        /// Persists the object.
        /// </summary>
        public virtual void Persist(ConstructionRefinanceData 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(ConstructionRefinanceData.GetConnectionString());

            try
            {
                // discover the parameters
                if (persistObject.Persisted)
                    sqlparams =  SqlHelperParameterCache.GetSpParameterSet(ConstructionRefinanceData.GetConnectionString(), "gsp_UpdateConstructionRefinanceData");
                else
                    sqlparams =  SqlHelperParameterCache.GetSpParameterSet(ConstructionRefinanceData.GetConnectionString(), "gsp_CreateConstructionRefinanceData");

                // Store the parameter for the ConstructionImprovementCostsAmount attribute.
                if (!persistObject.ConstructionImprovementCostsAmountIsNull)
                    sqlparams["@constructionImprovementCostsAmount"].Value = persistObject.ConstructionImprovementCostsAmount;
                // Store the parameter for the FRECashOutAmount attribute.
                if (!persistObject.FRECashOutAmountIsNull)
                    sqlparams["@fRECashOutAmount"].Value = persistObject.FRECashOutAmount;
                // Store the parameter for the LandEstimatedValueAmount attribute.
                if (!persistObject.LandEstimatedValueAmountIsNull)
                    sqlparams["@landEstimatedValueAmount"].Value = persistObject.LandEstimatedValueAmount;
                // Store the parameter for the LandOriginalCostAmount attribute.
                if (!persistObject.LandOriginalCostAmountIsNull)
                    sqlparams["@landOriginalCostAmount"].Value = persistObject.LandOriginalCostAmount;
                // Store the parameter for the PropertyAcquiredYear attribute.
                if (!persistObject.PropertyAcquiredYearIsNull)
                    sqlparams["@propertyAcquiredYear"].Value = persistObject.PropertyAcquiredYear;
                // Store the parameter for the PropertyExistingLienAmount attribute.
                if (!persistObject.PropertyExistingLienAmountIsNull)
                    sqlparams["@propertyExistingLienAmount"].Value = persistObject.PropertyExistingLienAmount;
                // Store the parameter for the PropertyOriginalCostAmount attribute.
                if (!persistObject.PropertyOriginalCostAmountIsNull)
                    sqlparams["@propertyOriginalCostAmount"].Value = persistObject.PropertyOriginalCostAmount;
                // Store the parameter for the RefinanceImprovementCostsAmount attribute.
                if (!persistObject.RefinanceImprovementCostsAmountIsNull)
                    sqlparams["@refinanceImprovementCostsAmount"].Value = persistObject.RefinanceImprovementCostsAmount;
                // Store the parameter for the RefinanceProposedImprovementsDescription attribute.
                if (!persistObject.RefinanceProposedImprovementsDescriptionIsNull)
                    sqlparams["@refinanceProposedImprovementsDescription"].Value = persistObject.RefinanceProposedImprovementsDescription;
                // Store the parameter for the SecondaryFinancingRefinanceIndicator attribute.
                sqlparams["@secondaryFinancingRefinanceIndicator"].Value = persistObject.SecondaryFinancingRefinanceIndicator;
                // Store the parameter for the FNMSecondMortgageFinancingOriginalPropertyIndicator attribute.
                sqlparams["@fNMSecondMortgageFinancingOriginalPropertyIndicator"].Value = persistObject.FNMSecondMortgageFinancingOriginalPropertyIndicator;
                // Store the parameter for the StructuralAlterationsConventionalAmount attribute.
                if (!persistObject.StructuralAlterationsConventionalAmountIsNull)
                    sqlparams["@structuralAlterationsConventionalAmount"].Value = persistObject.StructuralAlterationsConventionalAmount;
                // Store the parameter for the NonStructuralAlterationsConventionalAmount attribute.
                if (!persistObject.NonStructuralAlterationsConventionalAmountIsNull)
                    sqlparams["@nonStructuralAlterationsConventionalAmount"].Value = persistObject.NonStructuralAlterationsConventionalAmount;
                // Store the parameter for the ConstructionPurposeType attribute.
                if (!persistObject.ConstructionPurposeTypeIsNull)
                    sqlparams["@constructionPurposeType"].Value = persistObject.ConstructionPurposeType;
                // Store the parameter for the RefinanceImprovementsType attribute.
                if (!persistObject.RefinanceImprovementsTypeIsNull)
                    sqlparams["@refinanceImprovementsType"].Value = persistObject.RefinanceImprovementsType;
                // Store the parameter for the GSERefinancePurposeType attribute.
                if (!persistObject.GSERefinancePurposeTypeIsNull)
                    sqlparams["@gSERefinancePurposeType"].Value = persistObject.GSERefinancePurposeType;
                // 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_CreateConstructionRefinanceData", sqlparams);
                        }
                        else
                        {
                            SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateConstructionRefinanceData", 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_CreateConstructionRefinanceData", sqlparams);
                    }
                    else
                    {
                        SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateConstructionRefinanceData", sqlparams);
                    }
                }
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
        /// <summary>
        /// Fills a single instance with data based on its primary key values.
        /// </summary>
        public virtual void Fill(ConstructionRefinanceData constructionrefinancedata, System.Int64 loanApplicationId)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(ConstructionRefinanceData.GetConnectionString());
            try
            {
                // discover the sql parameters
                SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(ConstructionRefinanceData.GetConnectionString(), "gsp_SelectConstructionRefinanceData");

                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_SelectConstructionRefinanceData", sqlparams);

                    if (datareader.Read())
                        constructionrefinancedata.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(ConstructionRefinanceData persistObject)
 {
     // Make a call to the overloaded method with a null transaction
     Persist(persistObject, null);
 }
        /// <summary>
        /// Deletes the object.
        /// </summary>
        public virtual void Delete(ConstructionRefinanceData deleteObject)
        {
            // create a new instance of the connection
            SqlConnection cnn = new SqlConnection(ConstructionRefinanceData.GetConnectionString());
            // create local variable array for the sql parameters
            SqlParameterHash sqlparams = null;

            try
            {
                // discover the parameters
                sqlparams =  SqlHelperParameterCache.GetSpParameterSet(ConstructionRefinanceData.GetConnectionString(), "gsp_DeleteConstructionRefinanceData");

                // 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_DeleteConstructionRefinanceData", sqlparams);

                    // close the connection after usage
                    cnn.Close();
                }

                // nullify the connection var
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }

            // nullify the reference
            deleteObject = null;
        }