コード例 #1
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(FHALoans fhaloans, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null) return;

            // Create a local variable for the new instance.
            FHALoan newobj = null;
            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(fhaloans.ContainsType[0]) as FHALoan;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                fhaloans.Add(newobj);
            }
        }
コード例 #2
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(FHALoans fhaloans, System.Data.DataSet data)
        {
            // Do nothing if we have nothing
            if (data == null || data.Tables.Count == 0 || data.Tables[0].Rows.Count == 0) return;

            // Create a local variable for the new instance.
            FHALoan newobj = null;
            // Create a local variable for the data row instance.
            System.Data.DataRow dr = null;

            // Iterate through the table rows
            for (int i = 0; i<data.Tables[0].Rows.Count; i++)
            {
                // Get a reference to the data row
                dr = data.Tables[0].Rows[i];
                // Create a new object instance
                newobj = System.Activator.CreateInstance(fhaloans.ContainsType[0]) as FHALoan;
                // Let the instance set its own members
                newobj.SetMembers(ref dr);
                // Add the new object to the collection instance
                fhaloans.Add(newobj);
            }
        }
コード例 #3
0
        /// <summary>
        /// Gets the objects for the FHA_LOAN relationship.
        /// </summary>
        public FHALoans GetFHALoans()
        {
            FHALoans fhaloans = new FHALoans();

            FHALoanBase.ServiceObject.FillByGovernmentLoan(fhaloans, _loanapplicationid);
            return fhaloans;
        }
コード例 #4
0
        /// <summary>
        /// Gets the objects for the FHA_LOAN relationship.
        /// </summary>
        public FHALoans GetFHALoans()
        {
            FHALoans fhaloans = new FHALoans();

            FHALoanBase.ServiceObject.FillByNationalHousingActSectionType(fhaloans, _id);
            return fhaloans;
        }
コード例 #5
0
        /// <summary>
        /// Gets all the available objects.
        /// </summary>
        public virtual FHALoans GetAll()
        {
            // create a new instance of the return object
            FHALoans objects = new FHALoans();

            // fill the objects
            this.Fill(objects);

            // return the filled object from the service
            return objects;
        }
コード例 #6
0
        /// <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;
            }
        }
コード例 #7
0
        /// <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;
            }
        }