Пример #1
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(DownPayments downpayments, 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.
            DownPayment 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(downpayments.ContainsType[0]) as DownPayment;
                // Let the instance set its own members
                newobj.SetMembers(ref dr);
                // Add the new object to the collection instance
                downpayments.Add(newobj);
            }
        }
Пример #2
0
        /// <summary>
        /// Fill method for populating an entire collection of DownPayments
        /// </summary>
        public virtual void Fill(DownPayments downPayments)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(DownPayment.GetConnectionString());


            try
            {
                using (cnn)
                {
                    // open the connection
                    cnn.Open();


                    // create an instance of the reader to fill.
                    SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectDownPayments");


                    // Send the collection and data to the object factory
                    CreateObjectsFromData(downPayments, datareader);


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


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Пример #3
0
        /// <summary>
        /// Gets the objects for the DOWN_PAYMENT relationship.
        /// </summary>
        public DownPayments GetDownPayments()
        {
            DownPayments downpayments = new DownPayments();


            DownPaymentBase.ServiceObject.FillByLoanApplication(downpayments, _id);
            return(downpayments);
        }
        /// <summary>
        /// Gets the objects for the DOWN_PAYMENT relationship.
        /// </summary>
        public DownPayments GetDownPayments()
        {
            DownPayments downpayments = new DownPayments();


            DownPaymentBase.ServiceObject.FillByDownPaymentType(downpayments, _id);
            return(downpayments);
        }
Пример #5
0
        /// <summary>
        /// Gets all the available objects.
        /// </summary>
        public virtual DownPayments GetAll()
        {
            // create a new instance of the return object
            DownPayments objects = new DownPayments();


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


            // return the filled object from the service
            return(objects);
        }
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(DownPayments downpayments, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null) return;

            // Create a local variable for the new instance.
            DownPayment newobj = null;
            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(downpayments.ContainsType[0]) as DownPayment;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                downpayments.Add(newobj);
            }
        }
Пример #7
0
        /// <summary>
        /// Fill method for populating a collection by DownPaymentType
        /// </summary>
        public void FillByDownPaymentType(DownPayments downPayments, System.Int16 id)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(DownPayment.GetConnectionString());


            try
            {
                // discover the sql parameters
                SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(DownPayment.GetConnectionString(), "gsp_SelectDownPaymentsByDownPaymentType");


                using (cnn)
                {
                    // open the connection
                    cnn.Open();


                    // set the parameters
                    sqlparams["@type"].Value = id;


                    // create an instance of the reader to fill.
                    SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectDownPaymentsByDownPaymentType", sqlparams);


                    // Send the collection and data to the object factory.
                    CreateObjectsFromData(downPayments, datareader);


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


                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Пример #8
0
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(DownPayments downpayments, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null)
            {
                return;
            }


            // Create a local variable for the new instance.
            DownPayment newobj = null;

            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(downpayments.ContainsType[0]) as DownPayment;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                downpayments.Add(newobj);
            }
        }
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(DownPayments downpayments, 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.
            DownPayment 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(downpayments.ContainsType[0]) as DownPayment;
                // Let the instance set its own members
                newobj.SetMembers(ref dr);
                // Add the new object to the collection instance
                downpayments.Add(newobj);
            }
        }
Пример #10
0
        /// <summary>
        /// Gets the objects for the DOWN_PAYMENT relationship.
        /// </summary>
        public DownPayments GetDownPayments()
        {
            DownPayments downpayments = new DownPayments();

            DownPaymentBase.ServiceObject.FillByLoanApplication(downpayments, _id);
            return downpayments;
        }
Пример #11
0
        /// <summary>
        /// Gets the objects for the DOWN_PAYMENT relationship.
        /// </summary>
        public DownPayments GetDownPayments()
        {
            DownPayments downpayments = new DownPayments();

            DownPaymentBase.ServiceObject.FillByDownPaymentType(downpayments, _id);
            return downpayments;
        }
        /// <summary>
        /// Gets all the available objects.
        /// </summary>
        public virtual DownPayments GetAll()
        {
            // create a new instance of the return object
            DownPayments objects = new DownPayments();

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

            // return the filled object from the service
            return objects;
        }
        /// <summary>
        /// Fill method for populating a collection by LOAN_APPLICATION
        /// </summary>
        public void FillByLoanApplication(DownPayments downPayments, System.Int64 id)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(DownPayment.GetConnectionString());

            try
            {
                // discover the sql parameters
                SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(DownPayment.GetConnectionString(), "gsp_SelectDownPaymentsByLoanApplication");

                using (cnn)
                {
                    // open the connection
                    cnn.Open();

                    // set the parameters
                    sqlparams["@loanApplicationId"].Value = id;

                    // create an instance of the reader to fill.
                    SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectDownPaymentsByLoanApplication", sqlparams);

                    // Send the collection and data to the object factory.
                    CreateObjectsFromData(downPayments, datareader);

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

                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
        /// <summary>
        /// Fill method for populating an entire collection of DownPayments
        /// </summary>
        public virtual void Fill(DownPayments downPayments)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(DownPayment.GetConnectionString());

            try
            {
                using (cnn)
                {
                    // open the connection
                    cnn.Open();

                    // create an instance of the reader to fill.
                    SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectDownPayments");

                    // Send the collection and data to the object factory
                    CreateObjectsFromData(downPayments, datareader);

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

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