/// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(LegalDescriptions legaldescriptions, System.Data.SqlClient.SqlDataReader data)
        {
            // Do nothing if we have nothing
            if (data == null) return;

            // Create a local variable for the new instance.
            LegalDescription newobj = null;
            // Iterate through the data reader
            while (data.Read())
            {
                // Create a new object instance
                newobj = System.Activator.CreateInstance(legaldescriptions.ContainsType[0]) as LegalDescription;
                // Let the instance set its own members
                newobj.SetMembers(ref data);
                // Add the new object to the collection instance
                legaldescriptions.Add(newobj);
            }
        }
        /// <summary>
        /// The object factory for a particular data collection instance.
        /// </summary>
        public virtual void CreateObjectsFromData(LegalDescriptions legaldescriptions, 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.
            LegalDescription 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(legaldescriptions.ContainsType[0]) as LegalDescription;
                // Let the instance set its own members
                newobj.SetMembers(ref dr);
                // Add the new object to the collection instance
                legaldescriptions.Add(newobj);
            }
        }
        /// <summary>
        /// Gets all the available objects.
        /// </summary>
        public virtual LegalDescriptions GetAll()
        {
            // create a new instance of the return object
            LegalDescriptions objects = new LegalDescriptions();

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

            // return the filled object from the service
            return objects;
        }
        /// <summary>
        /// Fill method for populating a collection by PROPERTY
        /// </summary>
        public void FillByProperty(LegalDescriptions legalDescriptions, System.Int64 loanApplicationId)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(LegalDescription.GetConnectionString());

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

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

                    // Send the collection and data to the object factory.
                    CreateObjectsFromData(legalDescriptions, 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 LegalDescriptions
        /// </summary>
        public virtual void Fill(LegalDescriptions legalDescriptions)
        {
            // create the connection to use
            SqlConnection cnn = new SqlConnection(LegalDescription.GetConnectionString());

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

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

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

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

                // nullify the connection
                cnn = null;
            }
            catch (SqlException sqlex)
            {
                throw sqlex;
            }
        }
Esempio n. 6
0
        /// <summary>
        /// Gets the objects for the LEGAL_DESCRIPTION relationship.
        /// </summary>
        public LegalDescriptions GetLegalDescriptions()
        {
            LegalDescriptions legaldescriptions = new LegalDescriptions();

            LegalDescriptionBase.ServiceObject.FillByProperty(legaldescriptions, _loanapplicationid);
            return legaldescriptions;
        }