/// <summary> /// Persists the object. /// </summary> public virtual void Persist(InterviewerInformation 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(InterviewerInformation.GetConnectionString()); try { // discover the parameters if (persistObject.Persisted) sqlparams = SqlHelperParameterCache.GetSpParameterSet(InterviewerInformation.GetConnectionString(), "gsp_UpdateInterviewerInformation"); else sqlparams = SqlHelperParameterCache.GetSpParameterSet(InterviewerInformation.GetConnectionString(), "gsp_CreateInterviewerInformation"); // Store the parameter for the InterviewersEmployerStreetAddress attribute. if (!persistObject.InterviewersEmployerStreetAddressIsNull) sqlparams["@interviewersEmployerStreetAddress"].Value = persistObject.InterviewersEmployerStreetAddress; // Store the parameter for the InterviewersEmployerCity attribute. if (!persistObject.InterviewersEmployerCityIsNull) sqlparams["@interviewersEmployerCity"].Value = persistObject.InterviewersEmployerCity; // Store the parameter for the InterviewersEmployerState attribute. if (!persistObject.InterviewersEmployerStateIsNull) sqlparams["@interviewersEmployerState"].Value = persistObject.InterviewersEmployerState; // Store the parameter for the InterviewersEmployerPostalCode attribute. if (!persistObject.InterviewersEmployerPostalCodeIsNull) sqlparams["@interviewersEmployerPostalCode"].Value = persistObject.InterviewersEmployerPostalCode; // Store the parameter for the InterviewersTelephoneNumber attribute. if (!persistObject.InterviewersTelephoneNumberIsNull) sqlparams["@interviewersTelephoneNumber"].Value = persistObject.InterviewersTelephoneNumber; // Store the parameter for the ApplicationTakenMethodType attribute. if (!persistObject.ApplicationTakenMethodTypeIsNull) sqlparams["@applicationTakenMethodType"].Value = persistObject.ApplicationTakenMethodType; // Store the parameter for the InterviewerApplicationSignedDate attribute. if (!persistObject.InterviewerApplicationSignedDateIsNull) sqlparams["@interviewerApplicationSignedDate"].Value = persistObject.InterviewerApplicationSignedDate; // Store the parameter for the InterviewersEmployerName attribute. if (!persistObject.InterviewersEmployerNameIsNull) sqlparams["@interviewersEmployerName"].Value = persistObject.InterviewersEmployerName; // Store the parameter for the InterviewersName attribute. if (!persistObject.InterviewersNameIsNull) sqlparams["@interviewersName"].Value = persistObject.InterviewersName; // 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_CreateInterviewerInformation", sqlparams); } else { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateInterviewerInformation", 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_CreateInterviewerInformation", sqlparams); } else { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateInterviewerInformation", sqlparams); } } } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Fills a single instance with data based on its primary key values. /// </summary> public virtual void Fill(InterviewerInformation interviewerinformation, System.Int64 loanApplicationId) { // create the connection to use SqlConnection cnn = new SqlConnection(InterviewerInformation.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(InterviewerInformation.GetConnectionString(), "gsp_SelectInterviewerInformation"); 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_SelectInterviewerInformation", sqlparams); if (datareader.Read()) interviewerinformation.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(InterviewerInformation persistObject) { // Make a call to the overloaded method with a null transaction Persist(persistObject, null); }
/// <summary> /// Deletes the object. /// </summary> public virtual void Delete(InterviewerInformation deleteObject) { // create a new instance of the connection SqlConnection cnn = new SqlConnection(InterviewerInformation.GetConnectionString()); // create local variable array for the sql parameters SqlParameterHash sqlparams = null; try { // discover the parameters sqlparams = SqlHelperParameterCache.GetSpParameterSet(InterviewerInformation.GetConnectionString(), "gsp_DeleteInterviewerInformation"); // 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_DeleteInterviewerInformation", sqlparams); // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } catch (SqlException sqlex) { throw sqlex; } // nullify the reference deleteObject = null; }